add tchar function: _tcsncmp

This commit is contained in:
Emmanuel Ledoux 2014-04-18 15:04:11 +02:00 committed by Emmanuel Ledoux
parent d866d37d3e
commit 75ff8fd9a4

View File

@ -40,6 +40,7 @@ typedef CHAR TCHAR;
#define _tcslen _wcslen
#define _tcsdup _wcsdup
#define _tcscmp wcscmp
#define _tcsncmp wcsncmp
#define _tcscpy wcscpy
#define _tcscat wcscat
#define _tcschr wcschr
@ -51,6 +52,7 @@ typedef CHAR TCHAR;
#define _tcslen strlen
#define _tcsdup _strdup
#define _tcscmp strcmp
#define _tcsncmp strncmp
#define _tcscpy strcpy
#define _tcscat strcat
#define _tcschr strchr