| 873 | } |
| 874 | |
| 875 | void StdioScanf( |
| 876 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 877 | { |
| 878 | struct StdVararg ScanfArgs; |
| 879 | |
| 880 | ScanfArgs.Param = Param; |
| 881 | ScanfArgs.NumArgs = NumArgs - 1; |
| 882 | ReturnValue->Val->Integer = |
| 883 | StdioBaseScanf(Parser, stdin, NULL, Param[0]->Val->Pointer, &ScanfArgs); |
| 884 | } |
| 885 | |
| 886 | void StdioFscanf( |
| 887 | struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
nothing calls this directly
no test coverage detected