Luna/libc/src/locale.cpp

13 lines
224 B
C++
Raw Normal View History

2023-05-31 20:12:50 +00:00
#include <locale.h>
static char s_default_locale[] = "C";
extern "C"
{
char* setlocale(int, const char*)
{
// FIXME: Set the current locale if <locale> is not NULL.
return s_default_locale;
}
}