Penguin
Blame: wcscasecmp(3)
EditPageHistoryDiffInfoLikePages
Annotated edit history of wcscasecmp(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WCSCASECMP
2 !!!WCSCASECMP
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 NOTES
10 ----
11 !!NAME
12
13
14 wcscasecmp - compare two wide-character strings, ignoring case
15 !!SYNOPSIS
16
17
18 __#include
19 __''s1''__, const wchar_t *__''s2''__);
20 __
21 !!DESCRIPTION
22
23
24 The __wcscasecmp__ function is the wide-character
25 equivalent of the __strcasecmp__ function. It compares
26 the wide-character string pointed to by ''s1'' and the
27 wide-character string pointed to by ''s2'', ignoring case
28 differences (__towupper__, __towlower__).
29 !!RETURN VALUE
30
31
32 The __wcscasecmp__ function returns zero if the
33 wide-character strings at ''s1'' and ''s2'' are equal
34 except for case distinctions. It returns a positive integer
35 if ''s1'' is greater than ''s2'', ignoring case. It
36 returns a negative integer if ''s1'' is smaller than
37 ''s2'', ignoring case.
38 !!CONFORMING TO
39
40
41 This function is a GNU extension.
42 !!SEE ALSO
43
44
45 strcasecmp(3), wcscmp(3)
46 !!NOTES
47
48
49 The behaviour of __wcscasecmp__ depends on the LC_CTYPE
50 category of the current locale.
51 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.