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 |
* <<strncmp>>---character string compare
|
sl@0
|
17 |
* INDEX
|
sl@0
|
18 |
* strncmp
|
sl@0
|
19 |
* ANSI_SYNOPSIS
|
sl@0
|
20 |
* #include <string.h>
|
sl@0
|
21 |
* int strncmp(const char *<[a]>, const char * <[b]>, size_t <[length]>);
|
sl@0
|
22 |
* TRAD_SYNOPSIS
|
sl@0
|
23 |
* #include <string.h>
|
sl@0
|
24 |
* int strncmp(<[a]>, <[b]>, <[length]>)
|
sl@0
|
25 |
* char *<[a]>;
|
sl@0
|
26 |
* char *<[b]>;
|
sl@0
|
27 |
* size_t <[length]>
|
sl@0
|
28 |
* <<strncmp>> compares up to <[length]> characters
|
sl@0
|
29 |
* from the string at <[a]> to the string at <[b]>.
|
sl@0
|
30 |
* RETURNS
|
sl@0
|
31 |
* If <<*<[a]>>> sorts lexicographically after <<*<[b]>>>,
|
sl@0
|
32 |
* <<strncmp>> returns a number greater than zero. If the two
|
sl@0
|
33 |
* strings are equivalent, <<strncmp>> returns zero. If <<*<[a]>>>
|
sl@0
|
34 |
* sorts lexicographically before <<*<[b]>>>, <<strncmp>> returns a
|
sl@0
|
35 |
* number less than zero.
|
sl@0
|
36 |
* PORTABILITY
|
sl@0
|
37 |
* <<strncmp>> is ANSI C.
|
sl@0
|
38 |
* <<strncmp>> requires no supporting OS subroutines.
|
sl@0
|
39 |
* QUICKREF
|
sl@0
|
40 |
* strncmp ansi pure
|
sl@0
|
41 |
*
|
sl@0
|
42 |
*
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
#include <string.h>
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
Compare some characters of two strings.
|
sl@0
|
51 |
Compares the first num characters of string1 to the first num characters of string2.
|
sl@0
|
52 |
The comparison is performed character by character.
|
sl@0
|
53 |
If a character that is not equal in both strings is found the function ends
|
sl@0
|
54 |
and returns a value that determines which of them was greater.
|
sl@0
|
55 |
@return a value indicating the lexicographical relation between the strings.
|
sl@0
|
56 |
@param s1 Null-terminated string to compare
|
sl@0
|
57 |
@param s2 Null-terminated string to compare.
|
sl@0
|
58 |
@param n Maximum number of characters to compare.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
EXPORT_C int
|
sl@0
|
61 |
strncmp (const char *s1, const char *s2, size_t n)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
const unsigned char* p1 = (const unsigned char*)s1;
|
sl@0
|
64 |
const unsigned char* p2 = (const unsigned char*)s2;
|
sl@0
|
65 |
|
sl@0
|
66 |
if (n == 0)
|
sl@0
|
67 |
return 0;
|
sl@0
|
68 |
|
sl@0
|
69 |
for (;;)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
int c1 = *p1++;
|
sl@0
|
72 |
int d = c1 - *p2++;
|
sl@0
|
73 |
if (d != 0)
|
sl@0
|
74 |
return d;
|
sl@0
|
75 |
if (c1 == 0)
|
sl@0
|
76 |
return d;
|
sl@0
|
77 |
if (--n == 0)
|
sl@0
|
78 |
return d;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
}
|