#include "core.h" bool LSR_is_init = false; /* * Repo-managed predicates. */ static char *mgd_pred_str [] = { "ebucore:hasMimeType", "lsup:created", "lsup:createdBy", "lsup:lastModified", "lsup:lastModifiedBy", "premis:hasSize", "premis:hasMessageDigest", NULL }; LSUP_rc LSR_init (void) { LSUP_rc rc = LSUP_init(); if (rc < 0) return rc; // TODO other initialization. return LSUP_OK; } void LSR_done (void) { // TODO other teardown. LSUP_done(); }