mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 13:33:42 +00:00
21 lines
364 B
C
21 lines
364 B
C
|
|
#include <precomp.h>
|
|
#include <mbstring.h>
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
int _mbsnicoll(const unsigned char *s1, const unsigned char *s2, size_t n)
|
|
{
|
|
WARN("_mbsnicoll unimplemented\n");
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
int _mbsnbicoll(const unsigned char *s1, const unsigned char *s2, size_t n)
|
|
{
|
|
WARN("_mbsnbicoll unimplemented\n");
|
|
return 0;
|
|
}
|