MCPcopy Create free account
hub / github.com/arun11299/cpp-subprocess / call

Function call

cpp-subprocess/subprocess.hpp:2204–2207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2202 */
2203template<typename... Args>
2204int call(std::initializer_list<const char*> plist, Args&&... args)
2205{
2206 return (detail::call_impl(plist, std::forward<Args>(args)...));
2207}
2208
2209template<typename... Args>
2210int call(const std::string& arg, Args&&... args)

Callers 1

test_exenameFunction · 0.85

Calls 1

call_implFunction · 0.85

Tested by 1

test_exenameFunction · 0.68