(stream: PointerLike, fmt: StringLike, *args: Format)
| 666 | |
| 667 | |
| 668 | def 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 | |
| 677 | def scanf(fmt: StringLike, *args: Format) -> int: |
nothing calls this directly
no test coverage detected