summaryrefslogtreecommitdiffstats
path: root/old-tests/config/config_t.c
blob: 9b9e56e60c75dba46d8e1b2ec27e80654dcd4e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Test program that reads, then writes a config file.
 */
#include <stdio.h>

#include "config.h"

int main(int argc, char **argv)
{
	struct config_file *cf;

	if (argc != 2) {
		fprintf(stderr, "Usage: %s <config_file>\n", argv[0]);
		exit(1);
	}

	cf = create_config_file();
	if (cf == NULL) {
		fprintf(stderr, "Couldn't create config_file object.\n");
		exit(1);
	}


	if (!read_config(cf, argv[1])) {
		fprintf(stderr, "Couldn't read config file '%s'\n", argv[0]);
		exit(1);
	}

	if (!write_config(cf, "out")) {
		fprintf(stderr, "Couldn't write config file 'out'\n");
		exit(1);
	}

	destroy_config_file(cf);
	dump_memory();
	return 0;
}