add include guard to puff.hpp

This commit is contained in:
arvidn 2018-11-11 16:11:33 +01:00 committed by Arvid Norberg
parent b731764c85
commit ffdd34a41a
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,8 @@
Mark Adler madler@alumni.caltech.edu
*/
#ifndef PUFF_HPP_INCLUDED
#define PUFF_HPP_INCLUDED
/*
* See puff.c for purpose and usage.
@ -29,3 +31,5 @@ int puff(unsigned char *dest, /* pointer to destination pointer */
unsigned long *destlen, /* amount of output space */
const unsigned char *source, /* pointer to source data pointer */
unsigned long *sourcelen); /* amount of input available */
#endif // PUFF_HPP_INCLUDED