views:

27

answers:

1

im trying to port application from cygwin to visual studio 2008 express
but im getting this error :

error C3861: 'strcasecmp': identifier not found  

in this type of code:

if (!strcasecmp("A0", s))  ....

what is the replacement in vs? i can't find any thing in the net

+1  A: 

Look for

int _stricmp(
   const char *string1,
   const char *string2 );
Alexander Rautenberg