aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLode Vandevenne <lode@google.com>2013-03-13 10:50:23 +0100
committerLode Vandevenne <lode@google.com>2013-03-13 10:50:23 +0100
commit2180febafb111fb25afb857a6034e0c526b4df01 (patch)
tree9401d5d53b7f2634a49186eb6c95bc1e488d7184
parent806be49c750347eb78f4d94bb21ad37aa9121f93 (diff)
downloadzopfli-2180febafb111fb25afb857a6034e0c526b4df01.tar.gz
Small cleanup
-rw-r--r--README7
-rw-r--r--zopfli.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/README b/README
index 0f2fe30..4d57acb 100644
--- a/README
+++ b/README
@@ -6,9 +6,10 @@ very well compressed gzip files.
The basic functions to compress data are ZopfliDeflate in deflate.h,
ZopfliZlibCompress in zlib_container.h and ZopfliGzipCompress in
-gzip_container.h. Use the ZopfliOptions object to set parameters that affect the
-speed and compression. Use the ZopfliInitOptions function to place the default
-values in the ZopfliOptions first.
+gzip_container.h, or ZopfliCompress in zopfli.h.
+Use the ZopfliOptions object to set parameters that affect the speed and
+compression. Use the ZopfliInitOptions function to place the default values in
+the ZopfliOptions first.
Deflate creates a valid deflate stream in memory, see:
http://www.ietf.org/rfc/rfc1951.txt
diff --git a/zopfli.h b/zopfli.h
index 1388501..9350b65 100644
--- a/zopfli.h
+++ b/zopfli.h
@@ -17,9 +17,8 @@ Author: lode.vandevenne@gmail.com (Lode Vandevenne)
Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala)
*/
-
-#ifndef UTIL_COMPRESSION_ZOPFLI_INTERNAL_ZOPFLI_H_
-#define UTIL_COMPRESSION_ZOPFLI_INTERNAL_ZOPFLI_H_
+#ifndef ZOPFLI_ZOPFLI_H_
+#define ZOPFLI_ZOPFLI_H_
#include <stdlib.h> /* for size_t */
@@ -86,4 +85,4 @@ void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type,
const unsigned char* in, size_t insize,
unsigned char** out, size_t* outsize);
-#endif /* UTIL_COMPRESSION_ZOPFLI_INTERNAL_ZOPFLI_H_ */
+#endif /* ZOPFLI_ZOPFLI_H_ */