Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/include/compat/xlocale.h
6173 views
1
#ifndef _COMPAT_XLOCALE_H_
2
#define _COMPAT_XLOCALE_H_
3
4
#define __NEED_locale_t
5
#include <bits/alltypes.h>
6
7
#include <locale.h>
8
9
#ifdef __cplusplus
10
extern "C" {
11
#endif
12
13
long long strtoll_l(const char *start, char **end, int base, locale_t loc);
14
unsigned long long strtoull_l(const char *start, char **end, int base, locale_t loc);
15
long double strtold_l(const char *start, char **end, locale_t loc);
16
17
#ifdef __cplusplus
18
}
19
#endif
20
21
#endif /* _COMPAT_XLOCALE_H_ */
22
23