mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
12 lines
223 B
C
12 lines
223 B
C
|
#include <precomp.h>
|
||
|
#include <mbstring.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
unsigned char * _mbscpy(unsigned char *dst, const unsigned char *str)
|
||
|
{
|
||
|
return (unsigned char*)strcpy((char*)dst,(const char*)str);
|
||
|
}
|