spawn.h
1 // Copyright 2018, Beeri 15. All rights reserved.
2 // Author: Roman Gershman (romange@gmail.com)
3 //
4 #pragma once
5 
6 namespace util {
7 
8 
9 // Runs sh with the command. Returns 0 if succeeded. Child status is ignored.
10 int sh_exec(const char* cmd);
11 
12 } // namespace util