commit | 331ea92ade37e5dcf14c44df59e5eda2136b1a8f | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Aug 10 16:37:20 2010 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Aug 10 16:37:20 2010 +0000 |
tree | 530dad9524b4b4f2dfd795a0ab25ee35d4e82291 | |
parent | e1dd1747e8750ed8a7641d59899e3cb8db5ddca9 [diff] [blame] |
Issue #9425: create Py_UNICODE_strrchr() function
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 6448cda..7f5e8fd 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h
@@ -1622,6 +1622,10 @@ const Py_UNICODE *s, Py_UNICODE c ); +PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strrchr( + const Py_UNICODE *s, Py_UNICODE c + ); + #ifdef __cplusplus } #endif