|
| double | us_strtod (const char *str, char **end) |
| | us_strtod() has the same prototype as ANSI C strtod() but it uses the POSIX/C decimal format, regardless of the current numeric locale. More...
|
| |
| float | us_strtof (const char *str, char **end) |
| | us_strtof() has the same prototype as ANSI C strtof() but it uses the POSIX/C decimal format, regardless of the current numeric locale. More...
|
| |
| double | us_atof (const char *str) |
| | us_atof() has the same prototype as ANSI C atof() but it expects a dot as decimal separator, regardless of the system locale. More...
|
| |
| int | us_vasprintf (char **ret, const char *format, va_list ap) |
| | us_vasprintf() has the same prototype as vasprintf(), but doesn't use the system locale. More...
|
| |
| int | us_asprintf (char **ret, const char *format,...) |
| | us_asprintf() has the same prototype as asprintf(), but doesn't use the system locale. More...
|
| |