mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
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;
|
|
}
|