nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
214 bytes raw
1
#ifndef NB_RUN_H
2
#define NB_RUN_H
3
4
#include "error.h"
5
6
[[nodiscard]] run_error run(
7
    const char  *cmd,
8
    char *const  argv[],
9
    char *const  envp[],
10
    const char  *cwd,
11
    const char  *log_path);
12
13
#endif