diff options
Diffstat (limited to 'lzip.h')
-rw-r--r-- | lzip.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* Xlunzip - Test tool for the lzip_decompress linux module - Copyright (C) 2016-2024 Antonio Diaz Diaz. + Copyright (C) 2016-2025 Antonio Diaz Diaz. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,14 +30,14 @@ enum { min_member_size = 36 }; -struct Pretty_print +typedef struct Pretty_print { const char * name; char * padded_name; const char * stdin_name; unsigned longest_name; bool first_post; - }; + } Pretty_print; static const uint8_t lzip_magic[4] = { 0x4C, 0x5A, 0x49, 0x50 }; /* "LZIP" */ @@ -81,13 +81,13 @@ static inline void set_retval( int * retval, const int new_val ) static const char * const mem_msg = "Not enough memory."; /* defined in in_place.c */ -int decompress_in_place( const int infd, struct Pretty_print * const pp, +int decompress_in_place( const int infd, Pretty_print * const pp, const bool testing ); /* defined in main.c */ int convert_retval( const int retval ); long flush( void * buf, unsigned long size ); -void show_results( struct Pretty_print * const pp, const long in_pos, +void show_results( Pretty_print * const pp, const long in_pos, const long out_pos, const bool testing ); void show_file_error( const char * const filename, const char * const msg, const int errcode ); |