sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* FUNCTION
|
sl@0
|
16 |
* <<strcmp>>---character string compare
|
sl@0
|
17 |
* INDEX
|
sl@0
|
18 |
* strcmp
|
sl@0
|
19 |
* ANSI_SYNOPSIS
|
sl@0
|
20 |
* #include <string.h>
|
sl@0
|
21 |
* int strcmp(const char *<[a]>, const char *<[b]>);
|
sl@0
|
22 |
* TRAD_SYNOPSIS
|
sl@0
|
23 |
* #include <string.h>
|
sl@0
|
24 |
* int strcmp(<[a]>, <[b]>)
|
sl@0
|
25 |
* char *<[a]>;
|
sl@0
|
26 |
* char *<[b]>;
|
sl@0
|
27 |
* <<strcmp>> compares the string at <[a]> to
|
sl@0
|
28 |
* the string at <[b]>.
|
sl@0
|
29 |
* RETURNS
|
sl@0
|
30 |
* If <<*<[a]>>> sorts lexicographically after <<*<[b]>>>,
|
sl@0
|
31 |
* <<strcmp>> returns a number greater than zero. If the two
|
sl@0
|
32 |
* strings match, <<strcmp>> returns zero. If <<*<[a]>>>
|
sl@0
|
33 |
* sorts lexicographically before <<*<[b]>>>, <<strcmp>> returns a
|
sl@0
|
34 |
* number less than zero.
|
sl@0
|
35 |
* PORTABILITY
|
sl@0
|
36 |
* <<strcmp>> is ANSI C.
|
sl@0
|
37 |
* <<strcmp>> requires no supporting OS subroutines.
|
sl@0
|
38 |
* QUICKREF
|
sl@0
|
39 |
* strcmp ansi pure
|
sl@0
|
40 |
*
|
sl@0
|
41 |
*
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
#include <string.h>
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
Compare two strings.
|
sl@0
|
50 |
Compares string1 to s1 character by character.
|
sl@0
|
51 |
This function starts comparing the first character of each string.
|
sl@0
|
52 |
If they are equal to each other continues with the following pair
|
sl@0
|
53 |
until the characters differ or until end of string is reached.
|
sl@0
|
54 |
@return a value indicating the lexicographical relation between the strings
|
sl@0
|
55 |
@param s1 Null-terminated string to compare.
|
sl@0
|
56 |
@param s2 Null-terminated string to compare.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
EXPORT_C int
|
sl@0
|
59 |
strcmp (const char *s1, const char *s2)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
const unsigned char* p1=(const unsigned char*)s1;
|
sl@0
|
62 |
const unsigned char* p2=(const unsigned char*)s2;
|
sl@0
|
63 |
for (;;)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
int c1=*p1++;
|
sl@0
|
66 |
int d=c1-*p2++;
|
sl@0
|
67 |
if (d!=0)
|
sl@0
|
68 |
return d;
|
sl@0
|
69 |
if (c1==0)
|
sl@0
|
70 |
return d;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
Compare the wide-character string pointed to by s1 to the wide-character
|
sl@0
|
76 |
string pointed to by s2.
|
sl@0
|
77 |
@return an integer greater than, equal to, or less than zero, if the
|
sl@0
|
78 |
wide-character string pointed to by s1 is greater than, equal to,
|
sl@0
|
79 |
or less than the wide-character string pointed to by s2.
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
EXPORT_C int wcscmp (const wchar_t *s1, const wchar_t *s2)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
for (;;)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
int c1=*s1++;
|
sl@0
|
86 |
int d=c1-*s2++;
|
sl@0
|
87 |
if (d!=0)
|
sl@0
|
88 |
return d;
|
sl@0
|
89 |
if (c1==0)
|
sl@0
|
90 |
return d;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
}
|