blob: 824c1f0c2b6d4f25de7f9e03f2d4b038f3fd9771 (
plain)
1
2
3
4
5
6
7
8
|
cdef extern from "stdarg.h":
ctypedef void *va_list
void va_start(va_list ap, void *last) nogil
void va_end(va_list ap) nogil
cdef extern from "etree_defs.h":
cdef int va_int(va_list ap) nogil
cdef char *va_charptr(va_list ap) nogil
|