blob: 52dad2bbea3c76b1678e7d9f19079ca254d17eb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PACKAGE_DB_H
#define PACKAGE_DB_H
#include <stdbool.h>
#include "package.h"
// loads and allocates package attributes for the info struct. does not do
// excessive validation, so this should be fine when loading lots of package
// data
bool load_package_info(char* pkgid, package_info_t* info);
#endif
|