under dramatic changes...
This commit is contained in:
7
lib/cmn/str-cpy.h
Normal file
7
lib/cmn/str-cpy.h
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
h2_size_t XFUN(strcpy) (xchar_t* dst, const xchar_t* src)
|
||||
{
|
||||
const xchar_t* p = src;
|
||||
while (*p != XCHAR('\0')) *dst++ = *p++;
|
||||
return p - src;
|
||||
}
|
Reference in New Issue
Block a user