mirror of
git://git.musl-libc.org/musl
synced 2024-11-23 18:14:19 +08:00
add missing yes/no strings to nl_langinfo
these were removed from the standard but still offered as an extension in langinfo.h, so nl_langinfo should support them.
This commit is contained in:
parent
a19cd2b64a
commit
0206f596d5
@ -24,7 +24,7 @@ static const char c_time[] =
|
||||
"%a %b %e %T %Y\0"
|
||||
"%H:%M:%S";
|
||||
|
||||
static const char c_messages[] = "^[yY]\0" "^[nN]";
|
||||
static const char c_messages[] = "^[yY]\0" "^[nN]\0" "yes\0" "no";
|
||||
static const char c_numeric[] = ".\0" "";
|
||||
|
||||
char *__nl_langinfo_l(nl_item item, locale_t loc)
|
||||
@ -49,7 +49,7 @@ char *__nl_langinfo_l(nl_item item, locale_t loc)
|
||||
str = "";
|
||||
break;
|
||||
case LC_MESSAGES:
|
||||
if (idx > 1) return NULL;
|
||||
if (idx > 3) return NULL;
|
||||
str = c_messages;
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user