If I have an integer variable I can use sscanfsscanf as shown below by using the format specifier %d.
sscanf (line, "Value of integer: %d\n", &my_integer);
sscanf (line, "Value of integer: %d\n", &my_integer); Where can I find format specifiers for uint8_tuint8_t, uint16_tuint16_t, uint32_tuint32_t and uint64_tuint64_t?
uint64_t has probably %lu.