Doug Anson / zlib
Committer:
ansond
Date:
Tue Feb 28 16:35:47 2017 +0000
Revision:
1:2a3edb8df037
Child:
2:111ce9bdefa4
updated

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 1:2a3edb8df037 1 #ifndef __GZIP_UTILS_H__
ansond 1:2a3edb8df037 2 #define __GZIP_UTILS_H__
ansond 1:2a3edb8df037 3
ansond 1:2a3edb8df037 4 // external declarations
ansond 1:2a3edb8df037 5 extern int gzip(unsigned char *dst, unsigned long *dst_length, unsigned char *src, unsigned long src_length);
ansond 1:2a3edb8df037 6 extern int gunzip(unsigned char *dst, unsigned long *dst_length, unsigned char *src, unsigned long src_length);
ansond 1:2a3edb8df037 7
ansond 1:2a3edb8df037 8 #endif // __GZIP_UTILS_H__