Luna/libs/libc/include/locale.h

20 lines
267 B
C
Raw Normal View History

#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
#ifdef __cplusplus
extern "C"
{
#endif
char* setlocale(int category, const char* locale); // Not implemented.
#ifdef __cplusplus
}
#endif
#endif