Use _strlwr and _strupr with MSVC

git-svn-id: https://svn.eduke32.com/eduke32@7105 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2018-10-25 23:31:10 +00:00
parent 385562d143
commit 8461fb0cb9
1 changed files with 7 additions and 2 deletions

View File

@ -1153,8 +1153,13 @@ char *Bstrtolower(char *str);
#define Bwildmatch wildmatch
#ifdef _WIN32
# define Bstrlwr strlwr
# define Bstrupr strupr
# ifdef _MSC_VER
# define Bstrlwr _strlwr
# define Bstrupr _strupr
# else
# define Bstrlwr strlwr
# define Bstrupr strupr
# endif
#else
char *Bstrlwr(char *);
char *Bstrupr(char *);