#include <ctype.h>
#include "wine/config.h"
#include "wine/port.h"
Go to the source code of this file.
◆ _stricmp()
Definition at line 11 of file string.c.
12{
13 const unsigned char *ustr1 = (const unsigned char *)str1;
14 const unsigned char *ustr2 = (const unsigned char *)str2;
15
17 ustr1++;
18 ustr2++;
19 }
21}