nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
176 bytes raw
1
#ifndef NB_FETCH_H
2
#define NB_FETCH_H
3
4
#include "../include/nbos.h"
5
#include "error.h"
6
7
[[nodiscard]] fetch_error fetch(
8
    const pkg  *p,
9
    const char *dest_path);
10
11
#endif