pkg_src_list.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* pkg_src_list.h - the opkg package management system
  2. Carl D. Worth
  3. Copyright (C) 2001 University of Southern California
  4. This program is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU General Public License as
  6. published by the Free Software Foundation; either version 2, or (at
  7. your option) any later version.
  8. This program is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. */
  13. #ifndef PKG_SRC_LIST_H
  14. #define PKG_SRC_LIST_H
  15. #include "pkg_src.h"
  16. #include "void_list.h"
  17. typedef struct void_list_elt pkg_src_list_elt_t;
  18. typedef struct void_list pkg_src_list_t;
  19. static inline int pkg_src_list_empty(pkg_src_list_t * list)
  20. {
  21. return void_list_empty((void_list_t *) list);
  22. }
  23. void pkg_src_list_elt_init(pkg_src_list_elt_t * elt, nv_pair_t * data);
  24. void pkg_src_list_elt_deinit(pkg_src_list_elt_t * elt);
  25. void pkg_src_list_init(pkg_src_list_t * list);
  26. void pkg_src_list_deinit(pkg_src_list_t * list);
  27. pkg_src_t *pkg_src_list_append(pkg_src_list_t * list, const char *name,
  28. const char *root_dir, const char *extra_data,
  29. int gzip);
  30. void pkg_src_list_push(pkg_src_list_t * list, pkg_src_t * data);
  31. pkg_src_list_elt_t *pkg_src_list_pop(pkg_src_list_t * list);
  32. #endif