01ce6f0bb3cf8b4fc8833e1ebaa7e5798fa4f49e
[oweals/opkg-lede.git] / libopkg / libopkg.h
1 /* opkglib.h - the opkg package management system
2
3    Florian Boor <florian.boor@kernelconcepts.de>
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2, or (at
8    your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14 */
15
16 #ifndef OPKGLIB_H
17 #define OPKGLIB_H
18
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22
23
24 #include "opkg_conf.h"
25 #include "opkg_message.h"
26 #include "opkg_download.h"
27 #include "opkg_utils.h"
28
29 #include "args.h"
30 #include "pkg.h"
31
32 extern int opkg_op(int argc, char *argv[]); /* opkglib.c */
33
34 #endif