Enable usual grep for function definition

Developer convenience: no space between function name and left paren
	modified:   compress.cpp
This commit is contained in:
John Reiser
2021-04-03 12:46:20 -07:00
committed by Markus F.X.J. Oberhumer
parent 4fa6a6aeef
commit cb70a5fef5
+3 -3
View File
@@ -67,7 +67,7 @@ unsigned upx_crc32(const void *buf, unsigned len, unsigned crc)
// //
**************************************************************************/ **************************************************************************/
int upx_compress ( const upx_bytep src, unsigned src_len, int upx_compress( const upx_bytep src, unsigned src_len,
upx_bytep dst, unsigned* dst_len, upx_bytep dst, unsigned* dst_len,
upx_callback_p cb, upx_callback_p cb,
int method, int level, int method, int level,
@@ -134,7 +134,7 @@ int upx_compress ( const upx_bytep src, unsigned src_len,
// //
**************************************************************************/ **************************************************************************/
int upx_decompress ( const upx_bytep src, unsigned src_len, int upx_decompress(const upx_bytep src, unsigned src_len,
upx_bytep dst, unsigned* dst_len, upx_bytep dst, unsigned* dst_len,
int method, int method,
const upx_compress_result_t *cresult ) const upx_compress_result_t *cresult )
@@ -177,7 +177,7 @@ int upx_decompress ( const upx_bytep src, unsigned src_len,
// //
**************************************************************************/ **************************************************************************/
int upx_test_overlap ( const upx_bytep buf, int upx_test_overlap( const upx_bytep buf,
const upx_bytep tbuf, const upx_bytep tbuf,
unsigned src_off, unsigned src_len, unsigned src_off, unsigned src_len,
unsigned* dst_len, unsigned* dst_len,