diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-01 23:43:50 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-01 23:43:50 (GMT) |
commit | c4eb765fc1c1fb90c9de90917e167d2e0f907b8d (patch) | |
tree | 722a2c02d53eb328a4ae9b660f89e1df41bc12dc /Include | |
parent | f37ca3c8bebf6aedbdaf96368c709d5c25ca7002 (diff) | |
download | cpython-c4eb765fc1c1fb90c9de90917e167d2e0f907b8d.zip cpython-c4eb765fc1c1fb90c9de90917e167d2e0f907b8d.tar.gz cpython-c4eb765fc1c1fb90c9de90917e167d2e0f907b8d.tar.bz2 |
Create Py_UNICODE_strcat() function
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 5fadb99..afef5d0 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -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, |