From: Thomas Debesse Date: Sat, 20 Feb 2021 20:38:50 +0000 (+0100) Subject: quake3: delete dead strupr X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3de1b78f457a3e73e737c0b609ee2e0bc6a371cf;p=xonotic%2Fnetradiant.git quake3: delete dead strupr --- diff --git a/tools/quake3/common/cmdlib.c b/tools/quake3/common/cmdlib.c index abbc0d68..60edebad 100644 --- a/tools/quake3/common/cmdlib.c +++ b/tools/quake3/common/cmdlib.c @@ -499,23 +499,6 @@ int Q_stricmp( const char *s1, const char *s2 ){ return Q_strncasecmp( s1, s2, 99999 ); } -// NOTE TTimo when switching to Multithread DLL (Release/Debug) in the config -// started getting warnings about that function, prolly a duplicate with the runtime function -// maybe we still need to have it in linux builds -/* - char *strupr (char *start) - { - char *in; - in = start; - while (*in) - { - *in = toupper(*in); - in++; - } - return start; - } - */ - char *strlower( char *start ){ char *in; in = start;