5 /* strncmp( const char *, const char *, size_t )
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
13 int strncmp( const char * s1, const char * s2, size_t n )
15 while ( n && ( *s1 == *s2 ) )
31 #warning Test driver missing.