source: trunk/libs/newlib/src/newlib/libc/string/wcscasecmp_l.c @ 559

Last change on this file since 559 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 1.3 KB
Line 
1/*
2FUNCTION
3        <<wcscasecmp_l>>---case-insensitive wide character string compare
4       
5INDEX
6        wcscasecmp_l
7
8SYNOPSIS
9        #include <wchar.h>
10        int wcscasecmp_l(const wchar_t *<[a]>, const wchar_t *<[b]>,
11                         locale_t <[locale]>);
12
13DESCRIPTION
14        <<wcscasecmp_l>> compares the wide character string at <[a]> to
15        the wide character string at <[b]> in a case-insensitive manner.
16
17        if <[locale]> is LC_GLOBAL_LOCALE or not a valid locale object,
18        the behaviour is undefined.
19
20RETURNS
21
22        If <<*<[a]>>> sorts lexicographically after <<*<[b]>>> (after
23        both are converted to uppercase), <<wcscasecmp_l>> returns a
24        number greater than zero.  If the two strings match,
25        <<wcscasecmp_l>> returns zero.  If <<*<[a]>>> sorts
26        lexicographically before <<*<[b]>>>, <<wcscasecmp_l>> returns a
27        number less than zero.
28
29PORTABILITY
30<<wcscasecmp_l>> is POSIX-1.2008
31
32<<wcscasecmp_l>> requires no supporting OS subroutines. It uses
33tolower() from elsewhere in this library.
34
35QUICKREF
36        wcscasecmp_l
37*/
38
39#include <wchar.h>
40#include <wctype.h>
41
42int
43wcscasecmp_l (const wchar_t *s1, const wchar_t *s2, struct __locale_t *locale)
44{
45  int d = 0;
46  for ( ; ; )
47    {
48      const int c1 = towlower_l (*s1++, locale);
49      const int c2 = towlower_l (*s2++, locale);
50      if (((d = c1 - c2) != 0) || (c2 == '\0'))
51        break;
52    }
53  return d;
54}
Note: See TracBrowser for help on using the repository browser.