1
0
mirror of https://github.com/emmanuel-marty/lzsa.git synced 2025-04-19 13:39:42 +00:00

Fix comments, header single inclusion defines

This commit is contained in:
Emmanuel Marty 2019-08-04 16:42:30 +02:00 committed by GitHub
parent d98220ff42
commit 1b368e71ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 14 additions and 14 deletions

@ -1,5 +1,5 @@
/*
* expand_v1.c - LZSA1 block decompressor implementation
* expand_block_v1.c - LZSA1 block decompressor implementation
*
* Copyright (C) 2019 Emmanuel Marty
*

@ -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 */

@ -1,5 +1,5 @@
/*
* expand_v2.c - LZSA2 block decompressor implementation
* expand_block_v2.c - LZSA2 block decompressor implementation
*
* Copyright (C) 2019 Emmanuel Marty
*

@ -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 */

@ -1,5 +1,5 @@
/*
* shrink_v1.c - LZSA1 block compressor implementation
* shrink_block_v1.c - LZSA1 block compressor implementation
*
* Copyright (C) 2019 Emmanuel Marty
*

@ -1,5 +1,5 @@
/*
* shrink_v1.h - LZSA1 block compressor definitions
* shrink_block_v1.h - LZSA1 block compressor definitions
*
* Copyright (C) 2019 Emmanuel Marty
*

@ -1,5 +1,5 @@
/*
* shrink_v2.c - LZSA2 block compressor implementation
* shrink_block_v2.c - LZSA2 block compressor implementation
*
* Copyright (C) 2019 Emmanuel Marty
*

@ -1,5 +1,5 @@
/*
* shrink_v2.h - LZSA2 block compressor definitions
* shrink_block_v2.h - LZSA2 block compressor definitions
*
* Copyright (C) 2019 Emmanuel Marty
*