MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / format_process_args

Function format_process_args

app/workflow/workflow.cpp:344–351  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342 std::cout << "batch_items=" << context.values[id + ".count"] << "\n";
343}
344
345std::string path_arg(const std::filesystem::path & path) {
346 return path.string();
347}
348
349std::string format_process_args(const std::string & program, const std::vector<std::string> & args) {
350 std::ostringstream out;
351 out << program;
352 for (const std::string & arg : args) {
353 out << ' ' << arg;
354 }

Callers 1

run_processFunction · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected