X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fwchar%2Fwcsncmp.c;h=f84f459cdbf7cb916bd1a1dd2c66856ed6f2f12b;hb=14bc57c5c4d93263e08fe50e67eb61815cd0592f;hp=920d64719203e86ecc81f43b46c9946ea7c968f3;hpb=14b5b78e19a79f590233caee7848e7cb19084088;p=pdclib diff --git a/functions/wchar/wcsncmp.c b/functions/wchar/wcsncmp.c index 920d647..f84f459 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; }