blob: f9208b76765691e0123f4761ef71274a7c17bed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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_ */
|