mirror of
https://github.com/reactos/reactos.git
synced 2025-08-11 02:55:38 +00:00
15 lines
242 B
C
15 lines
242 B
C
#include <mbstring.h>
|
|
#include <string.h>
|
|
|
|
size_t _mbclen2(const unsigned int s);
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
void _mbccpy(unsigned char *dst, const unsigned char *src)
|
|
{
|
|
if (!_ismbblead(*src) )
|
|
return;
|
|
|
|
memcpy(dst,src,_mbclen2(*src));
|
|
}
|