On December 30, 2002 02:53 pm, Shachar Shemesh wrote:
It seems that stricmp is not available for winelib applications. Is this an intentional ommision, or just a missing implementation?
It is if you link it against msvcrt: include/msvcrt/string.h:#define stricmp _stricmp
If you use winegcc to compile your winelib app, just add -mno-cygwin to the command line, and that will cause it to use msvcrt instead of the native libc.