diff options
Diffstat (limited to 'system/include/xlocale.h')
-rw-r--r-- | system/include/xlocale.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system/include/xlocale.h b/system/include/xlocale.h new file mode 100644 index 00000000..f9208b76 --- /dev/null +++ b/system/include/xlocale.h @@ -0,0 +1,16 @@ + +#ifndef _XLOCALE_H_ +#define _XLOCALE_H_ + +#include <locale.h> + +long long strtoll_l(const char *start, char **end, int base, locale_t loc); +unsigned long long strtoull_l(const char *start, char **end, int base, locale_t loc); + +double strtold_l(const char *start, char **end, locale_t loc); + +int isxdigit_l(int c, locale_t locale); +int isdigit_l(int c, locale_t locale); + +#endif /* _LOCALE_H_ */ + |