Fix potential undefined references to FILE, for libopkg users.
[oweals/opkg-lede.git] / libopkg / pkg_dest_list.h
1 /* pkg_dest_list.h - the opkg package management system
2
3    Carl D. Worth
4
5    Copyright (C) 2001 University of Southern California
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #ifndef PKG_DEST_LIST_H
19 #define PKG_DEST_LIST_H
20
21 #include "pkg_dest.h"
22
23 typedef struct void_list_elt pkg_dest_list_elt_t;
24
25 typedef struct void_list pkg_dest_list_t;
26
27 void pkg_dest_list_elt_init(pkg_dest_list_elt_t *elt, pkg_dest_t *data);
28 void pkg_dest_list_elt_deinit(pkg_dest_list_elt_t *elt);
29
30 void pkg_dest_list_init(pkg_dest_list_t *list);
31 void pkg_dest_list_deinit(pkg_dest_list_t *list);
32
33 pkg_dest_t *pkg_dest_list_append(pkg_dest_list_t *list, const char *name,
34                                  const char *root_dir,const char* lists_dir);
35 void pkg_dest_list_push(pkg_dest_list_t *list, pkg_dest_t *data);
36 pkg_dest_list_elt_t *pkg_dest_list_pop(pkg_dest_list_t *list);
37
38 #endif
39