nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
274 bytes raw
1
#ifndef NB_REALIZE_H
2
#define NB_REALIZE_H
3
4
#include "../include/nbos.h"
5
#include "arena.h"
6
#include "error.h"
7
#include "resolve.h"
8
9
[[nodiscard]] realize_error realize(
10
    arena              *a,
11
    const pkg_refs     *all_pkgs,
12
    const resolved_list *resolved);
13
14
#endif