#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