mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-04 17:54:01 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
12
thirdparty/raknet/Source/LinuxStrings.cpp
vendored
Normal file
12
thirdparty/raknet/Source/LinuxStrings.cpp
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
#if (defined(__GNUC__) || defined(__GCCXML__)) && !defined(__WIN32)
|
||||
#include <string.h>
|
||||
int _stricmp(const char* s1, const char* s2)
|
||||
{
|
||||
return strcasecmp(s1,s2);
|
||||
}
|
||||
int _strnicmp(const char* s1, const char* s2, size_t n)
|
||||
{
|
||||
return strncasecmp(s1,s2,n);
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user