blob: 98c3e6ef6464e801cdf4ab8dc162aabb0ecd9b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef PACKAGE_DB_H
#define PACKAGE_DB_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
|