i'm looking for the standard functions to convert a string to an stdint.h integer, like
int i = atoi("123");
unsigned long ul = strtoul("123", NULL, 10);
uint32_t n = mysteryfunction("123"); // <-- ???
|
i'm looking for the standard functions to convert a string to an stdint.h integer, like
| |||
|
feedback
|
|
There are two general options:
(In the case of Edit: as Jens Gustedt notes below, this doesn't offer the full flexibility of | |||||||||||||
feedback
|
|
Since your question concerns
you easily can define macros that do the trick for any type you are interested in
| |||
feedback
|