Home | Info | Community | Development | myReactOS | Contact Us
00001 #include <mbstring.h> 00002 #include <string.h> 00003 00004 /* 00005 * @implemented 00006 */ 00007 int _mbscmp(const unsigned char *str1, const unsigned char *str2) 00008 { 00009 return strcmp((const char*)str1, (char*)str2); 00010 }