under dramatic changes...

This commit is contained in:
2014-07-02 14:29:01 +00:00
parent efc55863f4
commit fafd1eb21f
90 changed files with 129552 additions and 166 deletions

7
h2/lib/cmn/str-cpy.h Normal file
View 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;
}