> strcasecmp does not exist when compiling with Visual Studio > (_stricmp does though and is doing the same job). mingw-w64 uses a > #define for that. Why not adding ft_strcasecmp like ft_strdup ?
There is already
#ifdef _WIN32
#define strcasecmp _stricmp
#endif
in `ftcommon.c`...
Werner
