diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-05-19 15:24:14 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-05-19 15:24:14 +0000 |
commit | 498822b67f68710b11d64a5aaf66aa1b865ef86e (patch) | |
tree | 1168f9e34f60132c697c77f315dc4d8c70081d71 /extra | |
parent | 896ed43166010debef7661d05b1172d92a0b3064 (diff) |
Added a bounch of locale fixes.
* extra/locale/gen_wc8bit.c: use strrchr to parse locale
name to handle the case in which it contains a '.' character
like ANSI_X3.4-1968
* include/locale.h: use __UCLIBC_HAS_XLOCALE__ to control
inclusion of xlocale.h only
* libc/misc/ctype/ctype.c: add missing weak_alias for
__tolower_l and __toupper_l
* libc/misc/locale/locale.c: use strcasecmp (case insensitive)
for utf-8 locale name.
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'extra')
-rw-r--r-- | extra/locale/gen_wc8bit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/locale/gen_wc8bit.c b/extra/locale/gen_wc8bit.c index 429421616..7cefb53be 100644 --- a/extra/locale/gen_wc8bit.c +++ b/extra/locale/gen_wc8bit.c @@ -189,7 +189,7 @@ int main(int argc, char **argv) } else { ++s0; } - s1 = strchr(s0, '.'); + s1 = strrchr(s0, '.'); if (!s1) { n = strlen(s0); } else { |