ipkg: remove auto-generated files
[oweals/opkg-lede.git] / pkg_dest_list.h
1 /* pkg_dest_list.h - the itsy 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 pkg_dest_list_elt pkg_dest_list_elt_t;
24 struct pkg_dest_list_elt
25 {
26     pkg_dest_list_elt_t *next;
27     pkg_dest_t *data;
28 };
29
30 typedef struct pkg_dest_list pkg_dest_list_t;
31 struct pkg_dest_list
32 {
33     pkg_dest_list_elt_t pre_head;
34     pkg_dest_list_elt_t *head;
35     pkg_dest_list_elt_t *tail;
36 };
37
38 int pkg_dest_list_elt_init(pkg_dest_list_elt_t *elt, pkg_dest_t *data);
39 void pkg_dest_list_elt_deinit(pkg_dest_list_elt_t *elt);
40
41 int pkg_dest_list_init(pkg_dest_list_t *list);
42 void pkg_dest_list_deinit(pkg_dest_list_t *list);
43
44 pkg_dest_t *pkg_dest_list_append(pkg_dest_list_t *list, const char *name,
45                                  const char *root_dir,const char* lists_dir);
46 int pkg_dest_list_push(pkg_dest_list_t *list, pkg_dest_t *data);
47 pkg_dest_list_elt_t *pkg_dest_list_pop(pkg_dest_list_t *list);
48
49 #endif
50