X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fwchar%2Fwcsncmp.c;h=7197c060b75892c849d9c44d411f5ea8560f617c;hp=920d64719203e86ecc81f43b46c9946ea7c968f3;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=14b5b78e19a79f590233caee7848e7cb19084088 diff --git a/functions/wchar/wcsncmp.c b/functions/wchar/wcsncmp.c index 920d647..7197c06 100644 --- a/functions/wchar/wcsncmp.c +++ b/functions/wchar/wcsncmp.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* wcsncmp( const wchar_t *, const wchar_t *, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -18,7 +16,7 @@ int wcsncmp( const wchar_t * s1, const wchar_t * s2, size_t n ) ++s2; --n; } - if ( ( n == 0 ) ) + if ( n == 0 ) { return 0; } @@ -31,7 +29,7 @@ int wcsncmp( const wchar_t * s1, const wchar_t * s2, size_t n ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {