I am trying to compile the following very very simple piece of source code:
#include // #include // using namespace std; cl
Add a define for it to overwrite stricmp with strcasecmp on the platforms you are looking for.
#ifdef _IPHONE <- your platform define here #define stricmp strcasecmp #define strnicmp strncasecmp #endif
Then you can just use stricmp always.