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

Function fscanf

src/pointers/bindings.py:668–674  ·  view source on GitHub ↗
(stream: PointerLike, fmt: StringLike, *args: Format)

Source from the content-addressed store, hash-verified

666
667
668def fscanf(stream: PointerLike, fmt: StringLike, *args: Format) -> int:
669 return binding_base(
670 dll.fscanf,
671 stream,
672 make_string(fmt),
673 *make_format(*args),
674 )
675
676
677def scanf(fmt: StringLike, *args: Format) -> 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