Penguin
Annotated edit history of memcmp(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 MEMCMP
2 !!!MEMCMP
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 memcmp - compare memory areas
14 !!SYNOPSIS
15
16
17 __#include
18 __''s1''__, const void *__''s2''__, size_t__ ''n''__);
19 __
20 !!DESCRIPTION
21
22
23 The __memcmp()__ function compares the first ''n''
24 bytes of the memory areas ''s1'' and ''s2''. It
25 returns an integer less than, equal to, or greater than zero
26 if ''s1'' is found, respectively, to be less than, to
27 match, or be greater than ''s2''.
28 !!RETURN VALUE
29
30
31 The __memcmp()__ function returns an integer less than,
32 equal to, or greater than zero if the first ''n'' bytes
33 of ''s1'' is found, respectively, to be less than, to
34 match, or be greater than the first ''n'' bytes of
35 ''s2''.
36 !!CONFORMING TO
37
38
39 SVID 3, BSD 4.3, ISO 9899
40 !!SEE ALSO
41
42
43 bcmp(3), strcasecmp(3), strcmp(3),
44 strcoll(3), strncmp(3),
45 strncasecmp(3)
46 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.