Cleanup trim_alloc().
[oweals/opkg-lede.git] / libopkg / opkg_utils.h
index 226c7d1415b661a6abeda40ad1b95bca52e80fed..fdba37d1f603491185263fea9fc5f3d5a523b42b 100644 (file)
 #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);
 
 long unsigned 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);
+char *trim_alloc(const char *line);
 int line_is_blank(const char *line);
 
 #endif