diff options
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index 55025c0af..a7fb05e52 100644 --- a/include/common.h +++ b/include/common.h @@ -829,6 +829,13 @@ void	fputc(int file, const char c);  int	ftstc(int file);  int	fgetc(int file); +/* lib/gzip.c */ +int gzip(void *dst, unsigned long *lenp, +		unsigned char *src, unsigned long srclen); +int zzip(void *dst, unsigned long *lenp, unsigned char *src, +		unsigned long srclen, int stoponerr, +		int (*func)(unsigned long, unsigned long)); +  /* lib/net_utils.c */  #include <net.h>  static inline IPaddr_t getenv_IPaddr(char *var) |