Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
gzip_utils.h@4:c269a5aba4b9, 2017-02-28 (annotated)
- Committer:
- ansond
- Date:
- Tue Feb 28 16:52:08 2017 +0000
- Revision:
- 4:c269a5aba4b9
- Parent:
- 2:111ce9bdefa4
updated header
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ansond | 1:2a3edb8df037 | 1 | #ifndef __GZIP_UTILS_H__ |
| ansond | 1:2a3edb8df037 | 2 | #define __GZIP_UTILS_H__ |
| ansond | 1:2a3edb8df037 | 3 | |
| ansond | 2:111ce9bdefa4 | 4 | #include "mbed.h" |
| ansond | 2:111ce9bdefa4 | 5 | #include "zlib.h" |
| ansond | 2:111ce9bdefa4 | 6 | |
| ansond | 1:2a3edb8df037 | 7 | // external declarations |
| ansond | 4:c269a5aba4b9 | 8 | extern "C" int gzip(unsigned char *dst, unsigned long *dst_length, unsigned char *src, unsigned long src_length); |
| ansond | 4:c269a5aba4b9 | 9 | extern "C" int gunzip(unsigned char *dst, unsigned long *dst_length, unsigned char *src, unsigned long src_length); |
| ansond | 1:2a3edb8df037 | 10 | |
| ansond | 1:2a3edb8df037 | 11 | #endif // __GZIP_UTILS_H__ |