зеркало из https://github.com/microsoft/git.git
Merge branch 'ss/msvc-strcasecmp'
MSVC update. * ss/msvc-strcasecmp: msvc: directly use MS version (_stricmp) of strcasecmp
This commit is contained in:
Коммит
c0e286a3d2
|
@ -10,18 +10,12 @@
|
|||
#define inline __inline
|
||||
#define __inline__ __inline
|
||||
#define __attribute__(x)
|
||||
#define strcasecmp _stricmp
|
||||
#define strncasecmp _strnicmp
|
||||
#define ftruncate _chsize
|
||||
#define strtoull _strtoui64
|
||||
#define strtoll _strtoi64
|
||||
|
||||
static __inline int strcasecmp (const char *s1, const char *s2)
|
||||
{
|
||||
int size1 = strlen(s1);
|
||||
int sisz2 = strlen(s2);
|
||||
return _strnicmp(s1, s2, sisz2 > size1 ? sisz2 : size1);
|
||||
}
|
||||
|
||||
#undef ERROR
|
||||
|
||||
#include "compat/mingw.h"
|
||||
|
|
Загрузка…
Ссылка в новой задаче