(string: StringLike, fmt: StringLike, *args: Format)
| 679 | |
| 680 | |
| 681 | def 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 | |
| 690 | def fgetc(stream: PointerLike) -> int: |
nothing calls this directly
no test coverage detected