#include "../../include/all.h" #include "../common.h" #include #include #include int main(int argc, char *argv[]) { int ret = EXIT_FAILURE; lm_entry_t entry; lm_ctx_t ctx; if (argc != 2) { printf("usage: %s \n", argv[0]); return ret; } lm_entry_init(&entry); if (!lm_ctx_new(&ctx, ROOT_DIR, NULL, DATA_DIR)) { printf("failed to init the ctx: %s (%d)\n", lm_strerror(), lm_error()); goto end; } if (!lm_ctx_database_find(&ctx, &entry, argv[1], NULL)) { printf("failed to find package: %s (%d)\n", lm_strerror(), lm_error()); goto end; } printf("checking %s (%s)...\n", entry.name, entry.version); if (!lm_ctx_check(&ctx, &entry, NULL, NULL)) { printf("failed to verify the package: %s (%d)\n", lm_strerror(), lm_error()); goto end; } printf("package check was successful!\n"); ret = EXIT_SUCCESS; end: lm_entry_free(&entry); lm_ctx_free(&ctx); return ret; }