Remove -Werror from libopkg CFLAGS.
[oweals/opkg-lede.git] / libopkg / opkg_utils.h
index 4d11316683b38be46620581af115aa058de1c971..7cb06938b7652019d983bf1ab5279ee188f80eee 100644 (file)
@@ -1,4 +1,4 @@
-/* opkg_utils.h - the itsy package management system
+/* opkg_utils.h - the opkg package management system
 
    Steven M. Ayer
    
 #include "pkg.h"
 #include "opkg_error.h"
 
-void push_error_list(struct errlist **errors,char * msg);
-void reverse_error_list(struct errlist **errors);
-void free_error_list();
+void push_error_list(char * msg);
+void free_error_list(void);
+void print_error_list(void);
 
-int get_available_blocks(char * filesystem);
-char **read_raw_pkgs_from_file(const char *file_name);
-char **read_raw_pkgs_from_stream(FILE *fp);
-char *trim_alloc(char * line);
+long unsigned int get_available_blocks(char * filesystem);
+char *trim_xstrdup(const char *line);
 int line_is_blank(const char *line);
 
 #endif