Run through indent, use /* */ style comments
This commit is contained in:
parent
d827e8b665
commit
4176972db5
@ -1,5 +1,5 @@
|
|||||||
#include <stdio.h> // for FILE
|
#include <stdio.h> /* for FILE */
|
||||||
#include <unistd.h> // for off_t
|
#include <unistd.h> /* for off_t */
|
||||||
|
|
||||||
enum extract_functions_e {
|
enum extract_functions_e {
|
||||||
extract_verbose_list = 1,
|
extract_verbose_list = 1,
|
||||||
@ -38,8 +38,11 @@ void seek_sub_file(FILE *src_stream, const int count);
|
|||||||
|
|
||||||
extern off_t archive_offset;
|
extern off_t archive_offset;
|
||||||
|
|
||||||
char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_headers)(FILE *),
|
char *unarchive(FILE * src_stream, FILE * out_stream,
|
||||||
const int extract_function, const char *prefix, char **include_name, char **exclude_name);
|
file_header_t * (*get_headers) (FILE *),
|
||||||
|
const int extract_function, const char *prefix,
|
||||||
|
char **include_name, char **exclude_name);
|
||||||
|
|
||||||
char *deb_extract(const char *package_filename, FILE *out_stream, const int extract_function,
|
char *deb_extract(const char *package_filename, FILE * out_stream,
|
||||||
const char *prefix, const char *filename);
|
const int extract_function, const char *prefix,
|
||||||
|
const char *filename);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user