diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-25 23:00:54 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-25 23:00:54 +0200 |
commit | 2c22452ff2275217a6eff264a86e3fa9f355a8aa (patch) | |
tree | 4d36cc4d51b1588f8b3c84dacc30dd095a51c87e /inffast.h | |
parent | d1de3909245b9152993cf8dced0c4d69fe04efd4 (diff) |
Style cleanup for inflate code
Diffstat (limited to 'inffast.h')
-rw-r--r-- | inffast.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,5 @@ +#ifndef INFFAST_H_ +#define INFFAST_H_ /* inffast.h -- header to use inffast.c * Copyright (C) 1995-2003, 2010 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h @@ -8,4 +10,6 @@ subject to change. Applications should only use zlib.h. */ -void ZLIB_INTERNAL inflate_fast (z_stream *strm, unsigned start); +void ZLIB_INTERNAL inflate_fast(z_stream *strm, unsigned start); + +#endif /* INFFAST_H_ */ |