26 lines
448 B
Python
26 lines
448 B
Python
"""
|
|
Auto-generated Python stub file from testcheck.py
|
|
Module: testcheck
|
|
"""
|
|
|
|
|
|
import t, c
|
|
import stdio
|
|
|
|
_pass_count: t.CExtern | t.CInt
|
|
_fail_count: t.CExtern | t.CInt
|
|
|
|
def begin(name: str) -> t.CInt: pass
|
|
|
|
def section(name: str) -> t.CInt: pass
|
|
|
|
def ok(msg: str) -> t.CInt: pass
|
|
|
|
def fail(msg: str) -> t.CInt: pass
|
|
|
|
def check(cond: t.CInt, ok_msg: str, fail_msg: str) -> t.CInt: pass
|
|
|
|
def info(msg: str) -> t.CInt: pass
|
|
|
|
def end() -> t.CInt: pass
|