From 1b368e71ad77eb84a605374ae62fbc333e7d1b47 Mon Sep 17 00:00:00 2001 From: Emmanuel Marty Date: Sun, 4 Aug 2019 16:42:30 +0200 Subject: [PATCH] Fix comments, header single inclusion defines --- src/expand_block_v1.c | 2 +- src/expand_block_v1.h | 8 ++++---- src/expand_block_v2.c | 2 +- src/expand_block_v2.h | 8 ++++---- src/shrink_block_v1.c | 2 +- src/shrink_block_v1.h | 2 +- src/shrink_block_v2.c | 2 +- src/shrink_block_v2.h | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/expand_block_v1.c b/src/expand_block_v1.c index 1a336c1..0b87644 100644 --- a/src/expand_block_v1.c +++ b/src/expand_block_v1.c @@ -1,5 +1,5 @@ /* - * expand_v1.c - LZSA1 block decompressor implementation + * expand_block_v1.c - LZSA1 block decompressor implementation * * Copyright (C) 2019 Emmanuel Marty * diff --git a/src/expand_block_v1.h b/src/expand_block_v1.h index 82bac6e..a1d5651 100644 --- a/src/expand_block_v1.h +++ b/src/expand_block_v1.h @@ -1,5 +1,5 @@ /* - * expand_v1.h - LZSA1 block decompressor definitions + * expand_block_v1.h - LZSA1 block decompressor definitions * * Copyright (C) 2019 Emmanuel Marty * @@ -30,8 +30,8 @@ * */ -#ifndef _EXPAND_V1_H -#define _EXPAND_V1_H +#ifndef _EXPAND_BLOCK_V1_H +#define _EXPAND_BLOCK_V1_H /** * Decompress one LZSA1 data block @@ -46,4 +46,4 @@ */ int lzsa_decompressor_expand_block_v1(const unsigned char *pInBlock, int nBlockSize, unsigned char *pOutData, int nOutDataOffset, int nBlockMaxSize); -#endif /* _EXPAND_V1_H */ +#endif /* _EXPAND_BLOCK_V1_H */ diff --git a/src/expand_block_v2.c b/src/expand_block_v2.c index 042a2e8..481461f 100644 --- a/src/expand_block_v2.c +++ b/src/expand_block_v2.c @@ -1,5 +1,5 @@ /* - * expand_v2.c - LZSA2 block decompressor implementation + * expand_block_v2.c - LZSA2 block decompressor implementation * * Copyright (C) 2019 Emmanuel Marty * diff --git a/src/expand_block_v2.h b/src/expand_block_v2.h index 5ccc0ca..f612f7a 100644 --- a/src/expand_block_v2.h +++ b/src/expand_block_v2.h @@ -1,5 +1,5 @@ /* - * expand_v2.h - LZSA2 block decompressor definitions + * expand_block_v2.h - LZSA2 block decompressor definitions * * Copyright (C) 2019 Emmanuel Marty * @@ -30,8 +30,8 @@ * */ -#ifndef _EXPAND_V2_H -#define _EXPAND_V2_H +#ifndef _EXPAND_BLOCK_V2_H +#define _EXPAND_BLOCK_V2_H /** * Decompress one LZSA2 data block @@ -46,4 +46,4 @@ */ int lzsa_decompressor_expand_block_v2(const unsigned char *pInBlock, int nBlockSize, unsigned char *pOutData, int nOutDataOffset, int nBlockMaxSize); -#endif /* _EXPAND_V2_H */ +#endif /* _EXPAND_BLOCK_V2_H */ diff --git a/src/shrink_block_v1.c b/src/shrink_block_v1.c index 1a21cb3..a2e32fd 100644 --- a/src/shrink_block_v1.c +++ b/src/shrink_block_v1.c @@ -1,5 +1,5 @@ /* - * shrink_v1.c - LZSA1 block compressor implementation + * shrink_block_v1.c - LZSA1 block compressor implementation * * Copyright (C) 2019 Emmanuel Marty * diff --git a/src/shrink_block_v1.h b/src/shrink_block_v1.h index 70a0289..cc89cde 100644 --- a/src/shrink_block_v1.h +++ b/src/shrink_block_v1.h @@ -1,5 +1,5 @@ /* - * shrink_v1.h - LZSA1 block compressor definitions + * shrink_block_v1.h - LZSA1 block compressor definitions * * Copyright (C) 2019 Emmanuel Marty * diff --git a/src/shrink_block_v2.c b/src/shrink_block_v2.c index 99a4367..998f5a0 100644 --- a/src/shrink_block_v2.c +++ b/src/shrink_block_v2.c @@ -1,5 +1,5 @@ /* - * shrink_v2.c - LZSA2 block compressor implementation + * shrink_block_v2.c - LZSA2 block compressor implementation * * Copyright (C) 2019 Emmanuel Marty * diff --git a/src/shrink_block_v2.h b/src/shrink_block_v2.h index 7db1da7..4a83608 100644 --- a/src/shrink_block_v2.h +++ b/src/shrink_block_v2.h @@ -1,5 +1,5 @@ /* - * shrink_v2.h - LZSA2 block compressor definitions + * shrink_block_v2.h - LZSA2 block compressor definitions * * Copyright (C) 2019 Emmanuel Marty *