MCPcopy Create free account
hub / github.com/ZeroIntensity/pointers.py / sscanf

Function sscanf

src/pointers/bindings.py:681–687  ·  view source on GitHub ↗
(string: StringLike, fmt: StringLike, *args: Format)

Source from the content-addressed store, hash-verified

679
680
681def sscanf(string: StringLike, fmt: StringLike, *args: Format) -> int:
682 return binding_base(
683 dll.sscanf,
684 make_string(string),
685 make_string(fmt),
686 *make_format(*args),
687 )
688
689
690def fgetc(stream: PointerLike) -> int:

Callers

nothing calls this directly

Calls 3

binding_baseFunction · 0.85
make_stringFunction · 0.85
make_formatFunction · 0.85

Tested by

no test coverage detected