Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 57735a0

Browse files
committed
Add missing prefixes
1 parent b965b39 commit 57735a0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/c-api/unicode.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -819,8 +819,8 @@ UCS4 Support
819819
Py_UCS4* Py_UCS4_strcat(Py_UCS4 *s1, const Py_UCS4 *s2)
820820
int Py_UCS4_strcmp(const Py_UCS4 *s1, const Py_UCS4 *s2)
821821
int Py_UCS4_strncmp(const Py_UCS4 *s1, const Py_UCS4 *s2, size_t n)
822-
Py_UCS4* strchr(const Py_UCS4 *s, Py_UCS4 c)
823-
Py_UCS4* strrchr(const Py_UCS4 *s, Py_UCS4 c)
822+
Py_UCS4* Py_UCS4_strchr(const Py_UCS4 *s, Py_UCS4 c)
823+
Py_UCS4* Py_UCS4_strrchr(const Py_UCS4 *s, Py_UCS4 c)
824824
825825
These utility functions work on strings of :c:type:`Py_UCS4` characters and
826826
otherwise behave like the C standard library functions with the same name.

0 commit comments

Comments
 (0)