blob: 4bafa27dd375d806f5e17d5e3076c43b8251535c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _COMPAT_XLOCALE_H_
#define _COMPAT_XLOCALE_H_
#include <locale.h>
#ifdef __cplusplus
extern "C" {
#endif
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);
#ifdef __cplusplus
}
#endif
#include_next <xlocale.h>
#endif /* _COMPAT_XLOCALE_H_ */
|