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
+16 -16
View File
@@ -67,12 +67,12 @@ 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,
const upx_compress_config_t *cconf, const upx_compress_config_t *cconf,
upx_compress_result_t *cresult ) upx_compress_result_t *cresult )
{ {
int r = UPX_E_ERROR; int r = UPX_E_ERROR;
upx_compress_result_t cresult_buffer; upx_compress_result_t cresult_buffer;
@@ -134,10 +134,10 @@ 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 )
{ {
int r = UPX_E_ERROR; int r = UPX_E_ERROR;
@@ -177,12 +177,12 @@ 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,
int method, int method,
const upx_compress_result_t *cresult ) const upx_compress_result_t *cresult )
{ {
int r = UPX_E_ERROR; int r = UPX_E_ERROR;