diff options
Diffstat (limited to 'SharedGraphics/puff.h')
-rw-r--r-- | SharedGraphics/puff.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/SharedGraphics/puff.h b/SharedGraphics/puff.h index e23a245431..50beef92a1 100644 --- a/SharedGraphics/puff.h +++ b/SharedGraphics/puff.h @@ -21,15 +21,14 @@ Mark Adler madler@alumni.caltech.edu */ - /* * See puff.c for purpose and usage. */ #ifndef NIL -# define NIL ((unsigned char *)0) /* for no output option */ +# define NIL ((unsigned char*)0) /* for no output option */ #endif -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 */ +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 */ |