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

8
h2/lib/cmn/str-len.h Normal file
View File

@ -0,0 +1,8 @@
h2_size_t XFUN(strlen) (const xchar_t* str)
{
const xchar_t* p = str;
while (*p != XCHAR('\0')) p++;
return p - str;
}