--Bug fixes

-Case insensitive comparisons via stricmp() were wrong on non-Windows systems.
This commit is contained in:
Person 2019-05-18 14:31:16 -07:00
parent 8614ae86a9
commit 30c2a103c9

View File

@ -17,7 +17,7 @@
#define fopen_s(pFile,filename,mode) ((*(pFile)=fopen((filename),(mode)))==nullptr)
#define _stat stat
#define _fstat fstat
#define _stricmp strcmp
#define _stricmp strcasecmp
typedef int errno_t;
#endif