mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
LibC: Added additional fields to lconv struct
Added some additional fields to the lconv structure that were missing and set all their defaults.
This commit is contained in:
parent
d1c984da82
commit
57eb37160c
2 changed files with 45 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue