Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / string / strcmp.c
blob894424a690c016023b83a56b00696ced0725afca
1 /*
2 FUNCTION
3 <<strcmp>>---character string compare
5 INDEX
6 strcmp
8 SYNOPSIS
9 #include <string.h>
10 int strcmp(const char *<[a]>, const char *<[b]>);
12 DESCRIPTION
13 <<strcmp>> compares the string at <[a]> to
14 the string at <[b]>.
16 RETURNS
17 If <<*<[a]>>> sorts lexicographically after <<*<[b]>>>,
18 <<strcmp>> returns a number greater than zero. If the two
19 strings match, <<strcmp>> returns zero. If <<*<[a]>>>
20 sorts lexicographically before <<*<[b]>>>, <<strcmp>> returns a
21 number less than zero.
23 PORTABILITY
24 <<strcmp>> is ANSI C.
26 <<strcmp>> requires no supporting OS subroutines.
28 QUICKREF
29 strcmp ansi pure
32 #include <string.h>
33 #include <limits.h>
35 /* Nonzero if either X or Y is not aligned on a "long" boundary. */
36 #define UNALIGNED(X, Y) \
37 (((long)X & (sizeof (long) - 1)) | ((long)Y & (sizeof (long) - 1)))
39 /* DETECTNULL returns nonzero if (long)X contains a NULL byte. */
40 #if LONG_MAX == 2147483647L
41 #define DETECTNULL(X) (((X) - 0x01010101) & ~(X) & 0x80808080)
42 #else
43 #if LONG_MAX == 9223372036854775807L
44 #define DETECTNULL(X) (((X) - 0x0101010101010101) & ~(X) & 0x8080808080808080)
45 #else
46 #error long int is not a 32bit or 64bit type.
47 #endif
48 #endif
50 #ifndef DETECTNULL
51 #error long int is not a 32bit or 64bit byte
52 #endif
54 int
55 strcmp (const char *s1,
56 const char *s2)
58 #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
59 while (*s1 != '\0' && *s1 == *s2)
61 s1++;
62 s2++;
65 return (*(unsigned char *) s1) - (*(unsigned char *) s2);
66 #else
67 unsigned long *a1;
68 unsigned long *a2;
70 /* If s1 or s2 are unaligned, then compare bytes. */
71 if (!UNALIGNED (s1, s2))
73 /* If s1 and s2 are word-aligned, compare them a word at a time. */
74 a1 = (unsigned long*)s1;
75 a2 = (unsigned long*)s2;
76 while (*a1 == *a2)
78 /* To get here, *a1 == *a2, thus if we find a null in *a1,
79 then the strings must be equal, so return zero. */
80 if (DETECTNULL (*a1))
81 return 0;
83 a1++;
84 a2++;
87 /* A difference was detected in last few bytes of s1, so search bytewise */
88 s1 = (char*)a1;
89 s2 = (char*)a2;
92 while (*s1 != '\0' && *s1 == *s2)
94 s1++;
95 s2++;
97 return (*(unsigned char *) s1) - (*(unsigned char *) s2);
98 #endif /* not PREFER_SIZE_OVER_SPEED */