diff options
Diffstat (limited to 'Libraries/LibC/locale.cpp')
-rw-r--r-- | Libraries/LibC/locale.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Libraries/LibC/locale.cpp b/Libraries/LibC/locale.cpp index 9d6f4d65a8..d015cf7a86 100644 --- a/Libraries/LibC/locale.cpp +++ b/Libraries/LibC/locale.cpp @@ -8,10 +8,34 @@ static char default_decimal_point[] = "."; static char default_thousands_sep[] = ","; static char default_grouping[] = "\x03\x03"; +static char default_empty_string[] = ""; +static char default_empty_value = 127; + static struct lconv default_locale = { default_decimal_point, default_thousands_sep, default_grouping, + default_empty_string, + default_empty_string, + default_empty_string, + default_empty_string, + default_empty_string, + default_empty_string, + default_empty_string, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value, + default_empty_value }; char* setlocale(int category, const char* locale) |