diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-22 20:08:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-22 20:08:46 (GMT) |
commit | 57735a0d6a139eeff76dc1de84649d498219c7ff (patch) | |
tree | 75d5792fbd0889d989735efaa93e5d2c81ebcd31 /Doc/c-api/unicode.rst | |
parent | b965b3938a95a7758b5f0c381f2baaf80db16495 (diff) | |
download | cpython-57735a0d6a139eeff76dc1de84649d498219c7ff.zip cpython-57735a0d6a139eeff76dc1de84649d498219c7ff.tar.gz cpython-57735a0d6a139eeff76dc1de84649d498219c7ff.tar.bz2 |
Add missing prefixes
Diffstat (limited to 'Doc/c-api/unicode.rst')
-rw-r--r-- | Doc/c-api/unicode.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index e982be0..3332d31 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -819,8 +819,8 @@ UCS4 Support Py_UCS4* Py_UCS4_strcat(Py_UCS4 *s1, const Py_UCS4 *s2) int Py_UCS4_strcmp(const Py_UCS4 *s1, const Py_UCS4 *s2) int Py_UCS4_strncmp(const Py_UCS4 *s1, const Py_UCS4 *s2, size_t n) - Py_UCS4* strchr(const Py_UCS4 *s, Py_UCS4 c) - Py_UCS4* strrchr(const Py_UCS4 *s, Py_UCS4 c) + Py_UCS4* Py_UCS4_strchr(const Py_UCS4 *s, Py_UCS4 c) + Py_UCS4* Py_UCS4_strrchr(const Py_UCS4 *s, Py_UCS4 c) These utility functions work on strings of :c:type:`Py_UCS4` characters and otherwise behave like the C standard library functions with the same name. |