summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/external/atoi.pyx
blob: ef121985421edd583c7a3c68fc01c45755630729 (plain)
1
2
3
4
5
6
from libc.stdlib cimport atoi


cdef parse_charptr_to_py_int(char* s):
    assert s is not NULL, "byte string value is NULL"
    return atoi(s)  # note: atoi() has no error detection!