19 lines
246 B
C
19 lines
246 B
C
#ifndef _LOCALE_H
|
|
#define _LOCALE_H
|
|
|
|
#define LC_ALL 0
|
|
#define LC_CTYPE 1
|
|
#define LC_COLLATE 2
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
char* setlocale(int category, const char* locale); // Not implemented.
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |