blob: da235348d16617d6f03ccc40b127f36abf413278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdlib.h>
#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;
}
}
|