mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
10 lines
185 B
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);
|
|
}
|