Files
ray/src/shims/windows/strings.h
T
mehrdadn b4030cdbbe File HANDLE/descriptor translation layer for Windows (#7657)
* Use TCP sockets on Windows with custom HANDLE <-> FD translation layer

* Get Plasma working on Windows

Co-authored-by: Mehrdad <noreply@github.com>
2020-03-23 21:08:25 -07:00

13 lines
266 B
C

#ifndef STRINGS_H
#define STRINGS_H
#include <string.h>
static int strcasecmp(const char *s1, const char *s2) { return _stricmp(s1, s2); }
static int strncasecmp(const char *s1, const char *s2, size_t n) {
return _strnicmp(s1, s2, n);
}
#endif /* STRINGS_H */