(fmt: StringLike, *args: Format)
| 675 | |
| 676 | |
| 677 | def scanf(fmt: StringLike, *args: Format) -> int: |
| 678 | return binding_base(dll.scanf, make_string(fmt), *make_format(*args)) |
| 679 | |
| 680 | |
| 681 | def sscanf(string: StringLike, fmt: StringLike, *args: Format) -> int: |
nothing calls this directly
no test coverage detected