diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:46:55 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:46:55 +0200 |
commit | 76b333749899c666dee522fd064234d8b94d9cfd (patch) | |
tree | c51a86c46f3403cb72ebf3fa4472bf30b813c101 /SharedGraphics/puff.h | |
parent | 7770d6a09d8e6d4a5fb1f380fb1b0afc97c765fb (diff) | |
download | serenity-76b333749899c666dee522fd064234d8b94d9cfd.zip |
SharedGraphics: Run clang-format on everything.
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 */ |