leocad/qt/system.cpp

37 lines
518 B
C++
Raw Normal View History

2013-08-09 06:57:18 +02:00
#include "lc_global.h"
2020-12-20 21:06:14 +01:00
#ifdef Q_OS_WIN
2013-08-09 06:57:18 +02:00
char* strcasestr(const char *s, const char *find)
{
char c, sc;
if ((c = *find++) != 0)
{
c = tolower((unsigned char)c);
2021-11-15 03:34:24 +01:00
const int len = (int)strlen(find);
2013-08-09 06:57:18 +02:00
do
{
do
{
if ((sc = *s++) == 0)
return (nullptr);
2013-08-09 06:57:18 +02:00
} while ((char)tolower((unsigned char)sc) != c);
2017-02-07 18:35:11 +01:00
} while (qstrnicmp(s, find, len) != 0);
2013-08-09 06:57:18 +02:00
s--;
}
return ((char *)s);
}
#else
char* strupr(char *string)
{
for (char *c = string; *c; c++)
*c = toupper(*c);
return string;
}
#endif