clean up arg checks
[project/uci.git] / test.c
1 /*
2 * libuci - Library for the Unified Configuration Interface
3 * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14 #include "libuci.h"
15
16 int main(int argc, char **argv)
17 {
18 struct uci_context *ctx = uci_alloc();
19
20 if (!ctx) {
21 fprintf(stderr, "Failed to allocate uci context");
22 return 1;
23 }
24
25 if (uci_parse(ctx, argv[1])) {
26 uci_perror(ctx, "uci_parse");
27 return 1;
28 }
29
30 return 0;
31 }