nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
310 bytes raw
1
#ifndef NB_SANDBOX_H
2
#define NB_SANDBOX_H
3
4
#include "../include/nbos.h"
5
#include "resolve.h"
6
7
[[nodiscard]] int sandbox_setup(
8
    const char     *sandbox_root,
9
    const pkg_refs *deps,
10
    const resolved *resolved_deps,
11
    const char     *src_dir);
12
13
void sandbox_teardown(const char *sandbox_root);
14
15
#endif