nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
337 bytes raw
1
#ifndef NB_BUILD_H
2
#define NB_BUILD_H
3
4
#include "../include/nbos.h"
5
#include "arena.h"
6
#include "error.h"
7
#include "resolve.h"
8
9
[[nodiscard]] realize_error build_pkg(
10
    arena              *a,
11
    const pkg          *p,
12
    const pkg_refs     *all_pkgs,
13
    const resolved     *resolved_pkgs,
14
    size_t              pkg_idx
15
);
16
17
#endif