add include guard to puff.hpp
This commit is contained in:
parent
b731764c85
commit
ffdd34a41a
|
@ -21,6 +21,8 @@
|
||||||
Mark Adler madler@alumni.caltech.edu
|
Mark Adler madler@alumni.caltech.edu
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef PUFF_HPP_INCLUDED
|
||||||
|
#define PUFF_HPP_INCLUDED
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* See puff.c for purpose and usage.
|
* 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 */
|
unsigned long *destlen, /* amount of output space */
|
||||||
const unsigned char *source, /* pointer to source data pointer */
|
const unsigned char *source, /* pointer to source data pointer */
|
||||||
unsigned long *sourcelen); /* amount of input available */
|
unsigned long *sourcelen); /* amount of input available */
|
||||||
|
|
||||||
|
#endif // PUFF_HPP_INCLUDED
|
||||||
|
|
Loading…
Reference in New Issue