X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fwchar%2Fwcsncmp.c;fp=lib%2Fcrtdll%2Fwchar%2Fwcsncmp.c;h=0000000000000000000000000000000000000000;hp=6341f462c61f4741deb46b837ff3e9f4b2ba0bb2;hb=e3ed2d773259cc445c7ff8181ebd934931365328;hpb=d378c68f5a9bb25c9e671dacd482d2e25d211df3 diff --git a/lib/crtdll/wchar/wcsncmp.c b/lib/crtdll/wchar/wcsncmp.c deleted file mode 100644 index 6341f46..0000000 --- a/lib/crtdll/wchar/wcsncmp.c +++ /dev/null @@ -1,16 +0,0 @@ -#include - -int wcsncmp(const wchar_t * cs,const wchar_t * ct,size_t count) -{ - while ((*cs) == (*ct) && count > 0) - { - if (*cs == 0) - return 0; - cs++; - ct++; - count--; - } - return (*cs) - (*ct); - -} -