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