diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/unarchive.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unarchive.h b/include/unarchive.h index 1c4e851ab..9f1331338 100644 --- a/include/unarchive.h +++ b/include/unarchive.h | |||
@@ -35,7 +35,7 @@ typedef struct archive_handle_s { | |||
35 | /* process the header component, e.g. tar -t */ | 35 | /* process the header component, e.g. tar -t */ |
36 | void (*action_header)(const file_header_t *); | 36 | void (*action_header)(const file_header_t *); |
37 | 37 | ||
38 | /* process the data componenet, e.g. extract to filesystem */ | 38 | /* process the data component, e.g. extract to filesystem */ |
39 | void (*action_data)(struct archive_handle_s *); | 39 | void (*action_data)(struct archive_handle_s *); |
40 | 40 | ||
41 | /* How to process any sub archive, e.g. get_header_tar_gz */ | 41 | /* How to process any sub archive, e.g. get_header_tar_gz */ |
@@ -56,7 +56,7 @@ typedef struct archive_handle_s { | |||
56 | /* Function that skips data: read_by_char or read_by_skip */ | 56 | /* Function that skips data: read_by_char or read_by_skip */ |
57 | void (*seek)(const struct archive_handle_s *archive_handle, const unsigned int amount); | 57 | void (*seek)(const struct archive_handle_s *archive_handle, const unsigned int amount); |
58 | 58 | ||
59 | /* Temperary storage */ | 59 | /* Temporary storage */ |
60 | char *buffer; | 60 | char *buffer; |
61 | 61 | ||
62 | /* Misc. stuff */ | 62 | /* Misc. stuff */ |