Commit 7ab45417 authored by Stefan Behnel's avatar Stefan Behnel

provide const_uchar and const_schar in libc.string declarations

parent 862e14d9
......@@ -2,6 +2,8 @@
cdef extern from *:
ctypedef char const_char "const char"
ctypedef char const_schar "const signed char"
ctypedef char const_uchar "const unsigned char"
ctypedef void const_void "const void"
cdef extern from "string.h" nogil:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment