/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Core { class Process { public: static pid_t spawn(StringView path); }; }