I need to convert a 256-bit integer that is represented as a array of 32-bit integer to string in decimal representation.
typedef struct {
uint32_t x[8];
} Uint256;
I can't add dependencies to the project so I cannot use additional libraries. Is there a way to achieve that efficiently?