1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-23 19:14:48 +00:00
reactos/sdk/lib/crt/mbstring/mbsnicoll.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;
}