Cleanup trim_alloc().
[oweals/opkg-lede.git] / libopkg / opkg_utils.h
index c3e90a9ff5d26a2a95850d9a709494bd91dd6d89..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);
 
-int get_available_blocks(char * filesystem);
+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