#include #include "pom.h" int main(void) { pom_error *error; pom_conf *conf = pom_load_path("foo", &error); if (!conf) { pom_error_print(error); free(error); return EXIT_FAILURE; } }