]> pd.if.org Git - pdclib/blob - functions/string/strncmp.c
Added some of <string.h>.
[pdclib] / functions / string / strncmp.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strncmp( const char *, const char *, size_t )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <string.h>
12
13 int strncmp( const char * s1, const char * s2, size_t n )
14 {
15     while ( n && ( *s1 == *s2 ) )
16     {
17         ++s1;
18         ++s2;
19         --n;
20     }
21     if ( ( n == 0 ) )
22     {
23         return 0;
24     }
25     else
26     {
27         return ( *s1 - *s2 );
28     }
29 }