Luna/libc/include/locale.h

21 lines
280 B
C
Raw Normal View History

2023-05-31 20:12:50 +00:00
/* 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