MCPcopy Index your code
hub / github.com/ZeroIntensity/pointers.py / make_format

Function make_format

src/pointers/bindings.py:429–435  ·  view source on GitHub ↗
(*args: Format)

Source from the content-addressed store, hash-verified

427
428
429def make_format(*args: Format) -> Iterator[Format]:
430 for i in args:
431 if isinstance(i, (VoidPointer, str, bytes)):
432 yield make_string(i) # type: ignore
433 continue
434
435 yield i
436
437
438def make_char(char: CharLike) -> bytes:

Callers 6

fprintfFunction · 0.85
printfFunction · 0.85
sprintfFunction · 0.85
fscanfFunction · 0.85
scanfFunction · 0.85
sscanfFunction · 0.85

Calls 1

make_stringFunction · 0.85

Tested by

no test coverage detected