MCPcopy Create free account
hub / github.com/BernardoGiordano/Checkpoint / StdioScanf

Function StdioScanf

common/script/cstdlib/stdio.c:875–884  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

873}
874
875void 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
886void StdioFscanf(
887 struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs)

Callers

nothing calls this directly

Calls 1

StdioBaseScanfFunction · 0.85

Tested by

no test coverage detected