2 * Copyright (C) 2002 Manuel Novoa III
3 * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
5 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
13 # define strcasecmp wcscasecmp
14 # define strcasecmp_l wcscasecmp_l
15 # ifdef __UCLIBC_DO_XLOCALE
16 # define TOLOWER(C) towlower_l((C), locale_arg)
18 # define TOLOWER(C) towlower((C))
21 # ifdef __UCLIBC_DO_XLOCALE
22 # define TOLOWER(C) tolower_l((C), locale_arg)
24 # define TOLOWER(C) tolower((C))
28 #if defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE)
30 int strcasecmp(register const Wchar
*s1
, register const Wchar
*s2
)
32 return strcasecmp_l(s1
, s2
, __UCLIBC_CURLOCALE
);
35 libc_hidden_def(strcasecmp
)
38 #else /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */
40 int __XL_NPP(strcasecmp
)(register const Wchar
*s1
, register const Wchar
*s2
44 while ((*s1
== *s2
) || (TOLOWER(*s1
) == TOLOWER(*s2
))) {
51 return (((Wuchar
)TOLOWER(*s1
)) < ((Wuchar
)TOLOWER(*s2
))) ? -1 : 1;
52 /* TODO -- should wide cmp funcs do wchar or Wuchar compares? */
56 while ( ((s1
== s2
) ||
57 !(r
= ((int)( TOLOWER(*((Wuchar
*)s1
))))
58 - TOLOWER(*((Wuchar
*)s2
))))
64 #if !defined WANT_WIDE || (defined WANT_WIDE && defined __UCLIBC_DO_XLOCALE)
65 libc_hidden_def(__XL_NPP(strcasecmp
))
68 #endif /* defined(__UCLIBC_HAS_XLOCALE__) && !defined(__UCLIBC_DO_XLOCALE) */