MCPcopy Create free account
hub / github.com/chen3feng/toft / StringScan

Function StringScan

base/string/format/scan.cpp:17–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15namespace toft {
16
17int StringScan(
18 const char* string, const char* format,
19 const FormatScanArg& arg1
20)
21{
22 const FormatScanArg* args[] = {
23 &arg1,
24 };
25 return StringVScan(string, format, args, 1);
26}
27
28int StringScan(
29 const std::string& string, const char* format,

Callers 4

TESTFunction · 0.85
TestFloatCorrectFunction · 0.85
TestFloatIncorrectFunction · 0.85
TEST_FFunction · 0.85

Calls 1

StringVScanFunction · 0.85

Tested by 4

TESTFunction · 0.68
TestFloatCorrectFunction · 0.68
TestFloatIncorrectFunction · 0.68
TEST_FFunction · 0.68