diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-03-14 20:13:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-03-14 20:13:23 +0000 |
commit | 3bc9b83f49805969b7d139b52ef6b003e5136354 (patch) | |
tree | 69d396ce5ffc4776494181985a6029080308b3f6 /sysdeps/generic/strncase.c | |
parent | fd1886a1683fd5966337f8d238822077775947db (diff) | |
download | glibc-3bc9b83f49805969b7d139b52ef6b003e5136354.tar glibc-3bc9b83f49805969b7d139b52ef6b003e5136354.tar.gz glibc-3bc9b83f49805969b7d139b52ef6b003e5136354.tar.bz2 glibc-3bc9b83f49805969b7d139b52ef6b003e5136354.zip |
Optimize a bit. It's better to get a reference to the current locale and then use the _l functions.
Diffstat (limited to 'sysdeps/generic/strncase.c')
-rw-r--r-- | sysdeps/generic/strncase.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sysdeps/generic/strncase.c b/sysdeps/generic/strncase.c index 4251dc1ce4..a55aaf6a3a 100644 --- a/sysdeps/generic/strncase.c +++ b/sysdeps/generic/strncase.c @@ -1,6 +1,6 @@ /* Compare at most N characters of two strings without taking care for the case. - Copyright (C) 1992, 1996, 1997, 2001 Free Software Foundation, Inc. + Copyright (C) 1992, 1996, 1997, 2001, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -29,12 +29,11 @@ # define __strncasecmp strncasecmp # define TOLOWER(Ch) tolower (Ch) #else +# include <locale/localeinfo.h> # ifdef USE_IN_EXTENDED_LOCALE_MODEL # define __strncasecmp __strncasecmp_l -# define TOLOWER(Ch) __tolower_l ((Ch), loc) -# else -# define TOLOWER(Ch) tolower (Ch) # endif +# define TOLOWER(Ch) __tolower_l ((Ch), loc) #endif #ifdef USE_IN_EXTENDED_LOCALE_MODEL @@ -56,6 +55,9 @@ __strncasecmp (s1, s2, n LOCALE_PARAM) size_t n; LOCALE_PARAM_DECL { +#if defined _LIBC && !defined USE_IN_EXTENDED_LOCALE_MODEL + __locale_t loc = _NL_CURRENT_LOCALE; +#endif const unsigned char *p1 = (const unsigned char *) s1; const unsigned char *p2 = (const unsigned char *) s2; int result; |