#pragma once #include #include #include namespace os { class Process { public: static Result fork(); static Result exec(StringView path, Slice args, bool search_in_path = true); static Result exec(StringView path, Slice args, Slice env, bool search_in_path = true); }; }