1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-24 21:31:04 +00:00
reactos/sdk/lib/crt/mbstring/mbscmp.c

10 lines
185 B
C

#include <mbstring.h>
#include <string.h>
/*
* @implemented
*/
int _mbscmp(const unsigned char *str1, const unsigned char *str2)
{
return strcmp((const char*)str1, (char*)str2);
}