mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +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);
|
|
}
|