3 /* memcmp( const void *, const void *, size_t )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
13 int memcmp( const void * s1, const void * s2, size_t n )
15 const unsigned char * p1 = (const unsigned char *) s1;
16 const unsigned char * p2 = (const unsigned char *) s2;
32 #include <_PDCLIB_test.h>
36 char const xxxxx[] = "xxxxx";
37 TESTCASE( memcmp( abcde, abcdx, 5 ) < 0 );
38 TESTCASE( memcmp( abcde, abcdx, 4 ) == 0 );
39 TESTCASE( memcmp( abcde, xxxxx, 0 ) == 0 );
40 TESTCASE( memcmp( xxxxx, abcde, 1 ) > 0 );