20 lines
371 B
Python
20 lines
371 B
Python
"""
|
|
Auto-generated Python stub file from stdlib.py
|
|
Module: stdlib
|
|
"""
|
|
|
|
|
|
c.CIfndef(__STDLIB_DEFINE__)
|
|
__STDLIB_DEFINE__: t.CDefine
|
|
|
|
from stdint import *
|
|
import t, c
|
|
|
|
def malloc(size: UINT) -> t.CVoid | t.CPtr | c.State: pass
|
|
|
|
def realloc(p: str, p2: t.CLong | t.CLong) -> t.CVoid | t.CPtr | c.State: pass
|
|
|
|
def free(p: t.CVoid | t.CPtr) -> None | c.State: pass
|
|
|
|
|
|
c.CEndif() |