]> git.ipfire.org Git - thirdparty/kmod.git/blob - test-libabc.c
Import skeleton from libabc
[thirdparty/kmod.git] / test-libabc.c
1 /*
2 libabc - something with abc
3
4 Copyright (C) 2011 Someone <someone@example.com>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include <stdio.h>
22 #include <stddef.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <fcntl.h>
26 #include <ctype.h>
27 #include <errno.h>
28 #include <unistd.h>
29
30 #include <libabc.h>
31
32 int main(int argc, char *argv[])
33 {
34 struct abc_ctx *ctx;
35 struct abc_thing *thing = NULL;
36 int err;
37
38 err = abc_new(&ctx);
39 if (err < 0)
40 exit(EXIT_FAILURE);
41
42 printf("version %s\n", VERSION);
43
44 err = abc_thing_new_from_string(ctx, "foo", &thing);
45 if (err >= 0)
46 abc_thing_unref(thing);
47
48 abc_unref(ctx);
49 return EXIT_SUCCESS;
50 }