Luna/libs/libc/include/locale.h
2022-11-06 20:47:16 +01:00

20 lines
267 B
C

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