12 lines
561 B
Python
12 lines
561 B
Python
import t, c
|
|
|
|
|
|
def printf(fmt: t.CConst | str, *args) -> int | t.State: pass
|
|
def fprintf(stream: bytes, fmt: t.CConst | str, *args) -> int | t.State: pass
|
|
def sprintf(buf: bytes, fmt: t.CConst | str, *args) -> int | t.State: pass
|
|
def snprintf(buf: bytes, size: t.CSizeT, fmt: t.CConst | str, *args) -> int | t.State: pass
|
|
def puts(s: t.CConst | str) -> int | t.State: pass
|
|
def fputs(s: t.CConst | str, stream: bytes) -> int | t.State: pass
|
|
def fgets(buf: bytes, size: int, stream: bytes) -> bytes | t.State: pass
|
|
def fflush(stream: bytes) -> int | t.State: pass
|