GRASS GIS 8 Programmer's Manual  8.5.0dev(2025)-3598a48e24
strings.h
Go to the documentation of this file.
1 /* MSVC does not have strings.h */
2 #ifndef GRASS_MSVC_STRINGS_H
3 #define GRASS_MSVC_STRINGS_H
4 
5 #include <../ucrt/string.h>
6 
7 #define strncasecmp _strnicmp
8 #define strcasecmp _stricmp
9 
10 #endif