2
0

opkg_utils.h 792 B

12345678910111213141516171819202122232425
  1. /* opkg_utils.h - the opkg package management system
  2. Steven M. Ayer
  3. Copyright (C) 2002 Compaq Computer Corporation
  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 OPKG_UTILS_H
  14. #define OPKG_UTILS_H
  15. unsigned long get_available_kbytes(char *filesystem);
  16. char *trim_xstrdup(const char *line);
  17. int line_is_blank(const char *line);
  18. #endif