21 lines
377 B
Python
21 lines
377 B
Python
"""
|
|
Auto-generated Python stub file from stdarg.py
|
|
Module: stdarg
|
|
"""
|
|
|
|
|
|
c.CIfndef(__STDARG_DEFINE__)
|
|
__STDARG_DEFINE__: t.CDefine
|
|
|
|
import t, c
|
|
|
|
def va_start(args: t.CPtr, last_arg: t.CPtr) -> c.State: pass
|
|
|
|
def va_arg(args: t.CPtr, type: t.CType) -> t.CType | c.State: pass
|
|
|
|
def va_end(args: t.CPtr) -> c.State: pass
|
|
|
|
|
|
va_list: t.CTypedef = t.CUnsignedChar | t.CPtr
|
|
|
|
c.CEndif() |