Content originally posted in LPCWare by micronpn on Wed Jul 09 03:23:48 MST 2014
1. Seems that some C stdlib functions are declared in the include files but are not present i nthe library.
For instance strtold() is declared but undefined:
long double strtold(const char * restrict nptr, char ** restrict endptr);
There are similar issues also for stdio functions as:
int vsscanf(const char *buffer, const char *format, va_list ap)
is there a list of unimplemented standardlib functions and/or data type management?
2. Is there a description of format flags supported by printf() and scanf() family of functions?