mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
36 lines
512 B
C++
36 lines
512 B
C++
#include "lc_global.h"
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
char* strcasestr(const char *s, const char *find)
|
|
{
|
|
char c, sc;
|
|
|
|
if ((c = *find++) != 0)
|
|
{
|
|
c = tolower((unsigned char)c);
|
|
int len = (int)strlen(find);
|
|
do
|
|
{
|
|
do
|
|
{
|
|
if ((sc = *s++) == 0)
|
|
return (nullptr);
|
|
} while ((char)tolower((unsigned char)sc) != c);
|
|
} while (qstrnicmp(s, find, len) != 0);
|
|
s--;
|
|
}
|
|
return ((char *)s);
|
|
}
|
|
|
|
#else
|
|
|
|
char* strupr(char *string)
|
|
{
|
|
for (char *c = string; *c; c++)
|
|
*c = toupper(*c);
|
|
|
|
return string;
|
|
}
|
|
|
|
#endif
|