#ifndef PACKAGE_H #define PACKAGE_H #include // this struct is the "handle" of a package to be passed into other package // functions typedef struct { char* script_path; struct { char buffer[4069]; char* id; char* name; char* desc; char* webpage; char* license; char* version; char* source_url; char* source_checksum; } attrs; } package_info_t; #endif