mirror of
https://github.com/moparisthebest/SickRage
synced 2025-01-08 04:18:09 -05:00
9 lines
254 B
Cython
9 lines
254 B
Cython
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
|