2022-10-31 11:29:53 +00:00
|
|
|
#ifndef _LOCALE_H
|
|
|
|
#define _LOCALE_H
|
|
|
|
|
|
|
|
#define LC_ALL 0
|
|
|
|
#define LC_CTYPE 1
|
|
|
|
#define LC_COLLATE 2
|
2022-11-06 19:47:16 +00:00
|
|
|
#define LC_NUMERIC 3
|
2022-10-31 11:29:53 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
char* setlocale(int category, const char* locale); // Not implemented.
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|