summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-09-01 23:43:50 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-09-01 23:43:50 (GMT)
commitc4eb765fc1c1fb90c9de90917e167d2e0f907b8d (patch)
tree722a2c02d53eb328a4ae9b660f89e1df41bc12dc /Include
parentf37ca3c8bebf6aedbdaf96368c709d5c25ca7002 (diff)
downloadcpython-c4eb765fc1c1fb90c9de90917e167d2e0f907b8d.zip
cpython-c4eb765fc1c1fb90c9de90917e167d2e0f907b8d.tar.gz
cpython-c4eb765fc1c1fb90c9de90917e167d2e0f907b8d.tar.bz2
Create Py_UNICODE_strcat() function
Diffstat (limited to 'Include')
-rw-r--r--Include/unicodeobject.h3
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,