summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/external/atoi.pyx
blob: 48643bbf25668692a93291ab4085d86d06abbf79 (plain)
1
2
3
4
5
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!