#ifndef PACKAGE_DB_H #define PACKAGE_DB_H #include #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