dependency.h (892B)
1 #ifndef __BETAUR_DEPENDENCY_H 2 #define __BETAUR_DEPENDENCY_H 3 #include <stddef.h> 4 #include <stdbool.h> 5 6 #include "aur/package.h" 7 8 typedef enum { 9 BETAUR_ANY, 10 BETAUR_EQ, 11 BETAUR_GE, 12 BETAUR_GT, 13 BETAUR_LE, 14 BETAUR_LT, 15 } betaur_mod; 16 17 typedef struct betaur_dependency { 18 char* depstring; 19 size_t name_len; 20 char* name; 21 size_t version_len; 22 char* version; 23 betaur_mod mod; 24 } betaur_dependency_t; 25 26 /* 27 * Create a memory that should be destroyed by the caller 28 * The returned struct is 'view' and does not create a memory for contents 29 * The input string should not have leading or trailing white spaces 30 */ 31 betaur_dependency_t* betaur_dependency_create(size_t depstring_len, char* depstring); 32 33 bool betaur_satisfied_by_version(betaur_dependency_t* bdep, const char* version); 34 35 // TODO pass 'candidate' by reference as the parcel is huge 36 bool betaur_satisfied_by(betaur_package_t candidate); 37 #endif