Penguin
Annotated edit history of wcscmp(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WCSCMP
2 !!!WCSCMP
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wcscmp - compare two wide-character strings
14 !!SYNOPSIS
15
16
17 __#include
18 __''s1''__, const wchar_t *__''s2''__);
19 __
20 !!DESCRIPTION
21
22
23 The __wcscmp__ function is the wide-character equivalent
24 of the __strcmp__ function. It compares the
25 wide-character string pointed to by ''s1'' and the
26 wide-character string pointed to by ''s2''.
27 !!RETURN VALUE
28
29
30 The __wcscmp__ function returns zero if the
31 wide-character strings at ''s1'' and ''s2'' are equal.
32 It returns an integer greater than zero if at the first
33 differing position ''i'', the corresponding
34 wide-character ''s1[[i]'' is greater than ''s2[[i]''. It
35 returns an integer less than zero if at the first differing
36 position ''i'', the corresponding wide-character
37 ''s1[[i]'' is less than ''s2[[i]''.
38 !!CONFORMING TO
39
40
41 ISO/ANSI C, UNIX98
42 !!SEE ALSO
43
44
45 strcmp(3), wcscasecmp(3),
46 wmemcmp(3)
47 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.