Create Py_UNICODE_strcat() function

This commit is contained in:
Victor Stinner 2010-09-01 23:43:50 +00:00
parent f37ca3c8be
commit c4eb765fc1
2 changed files with 12 additions and 0 deletions

View file

@ -1573,6 +1573,9 @@ PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strcpy(
Py_UNICODE *s1,
const Py_UNICODE *s2);
PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strcat(
Py_UNICODE *s1, const Py_UNICODE *s2);
PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strncpy(
Py_UNICODE *s1,
const Py_UNICODE *s2,