MCPcopy Create free account
hub / github.com/apache/arrow / Main

Function Main

cpp/src/arrow/csv/generate_fuzz_corpus.cc:188–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186}
187
188int Main(int argc, char** argv) {
189 if (argc != 2) {
190 Usage();
191 }
192 auto out_dir = std::string(argv[1]);
193
194 Status st = DoMain(out_dir);
195 if (!st.ok()) {
196 std::cerr << st.ToString() << std::endl;
197 return 1;
198 }
199 return 0;
200}
201
202} // namespace arrow::csv
203

Callers 1

mainFunction · 0.70

Calls 4

UsageFunction · 0.70
DoMainFunction · 0.70
okMethod · 0.45
ToStringMethod · 0.45

Tested by

no test coverage detected