[PSDK]
[reactos.git] / reactos / lib / 3rdparty / mingw / strncasecmp.c
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6
7 #define __CRT__NO_INLINE
8 #include <string.h>
9
10 #undef strncasecmp
11 int strncasecmp (const char *, const char *, size_t);
12
13 int
14 strncasecmp (const char *sz1,const char *sz2,size_t sizeMaxCompare)
15 {
16 return _strnicmp (sz1,sz2,sizeMaxCompare);
17 }