mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
11 lines
185 B
C
11 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);
|
||
|
}
|