mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
25 lines
357 B
C++
25 lines
357 B
C++
#include <locale.h>
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
extern "C" {
|
|
|
|
static struct lconv default_locale = {
|
|
".",
|
|
",",
|
|
"\x03\x03",
|
|
};
|
|
|
|
char* setlocale(int category, const char* locale)
|
|
{
|
|
dbgprintf("FIXME(LibC): setlocale(%d, %s)\n", category, locale);
|
|
return nullptr;
|
|
}
|
|
|
|
struct lconv* localeconv()
|
|
{
|
|
return &default_locale;
|
|
}
|
|
|
|
}
|