21 lines
280 B
C
21 lines
280 B
C
|
/* locale.h: Locale category macros. */
|
||
|
|
||
|
#ifndef _LOCALE_H
|
||
|
#define _LOCALE_H
|
||
|
|
||
|
#include <bits/locale-cat.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
// Query or set the current locale.
|
||
|
char* setlocale(int category, const char* locale);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|