]> mj.ucw.cz Git - libucw.git/commitdiff
Added #ifdef guards.
authorMartin Mares <mj@ucw.cz>
Tue, 6 Jul 2004 11:03:25 +0000 (11:03 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 6 Jul 2004 11:03:25 +0000 (11:03 +0000)
lib/lizard.h

index f81ea5f40777b3643021614119399a090074b98f..51f46bad23a77356ac5a9b8097290d4743d2b7d9 100644 (file)
@@ -7,6 +7,9 @@
  *     of the GNU Lesser General Public License.
  */
 
+#ifndef _SHERLOCK_LIZARD_H
+#define _SHERLOCK_LIZARD_H
+
 #define        LIZARD_NEEDS_CHARS      8
   /* The compression routine needs input buffer 8 characters longer, because it
    * does not check the input bounds all the time.  */
@@ -33,3 +36,5 @@ struct lizard_buffer;
 struct lizard_buffer *lizard_alloc(void);
 void lizard_free(struct lizard_buffer *buf);
 byte *lizard_decompress_safe(byte *in, struct lizard_buffer *buf, uns expected_length);
+
+#endif