[657] | 1 | #ifndef _ZZIP_FSEEKO_H_ |
---|
| 2 | #define _ZZIP_FSEEKO_H_ |
---|
| 3 | /* |
---|
| 4 | * simplified zip disk access using fseeko on a stdio FILE handle |
---|
| 5 | * |
---|
| 6 | * Author: |
---|
| 7 | * Guido Draheim <guidod@gmx.de> |
---|
| 8 | * |
---|
| 9 | * Copyright (c) 2003,2004 Guido Draheim |
---|
| 10 | * All rights reserved, |
---|
| 11 | * use under the restrictions of the |
---|
| 12 | * Lesser GNU General Public License |
---|
| 13 | * or alternatively the restrictions |
---|
| 14 | * of the Mozilla Public License 1.1 |
---|
| 15 | */ |
---|
| 16 | |
---|
| 17 | |
---|
| 18 | #include <zzip/types.h> |
---|
| 19 | #include <stdio.h> |
---|
| 20 | |
---|
| 21 | typedef struct zzip_entry ZZIP_ENTRY; |
---|
| 22 | typedef struct zzip_entry_file ZZIP_ENTRY_FILE; |
---|
| 23 | |
---|
| 24 | typedef int (*zzip_strcmp_fn_t)(char*, char*); |
---|
| 25 | typedef int (*zzip_fnmatch_fn_t)(char*, char*, int); |
---|
| 26 | |
---|
| 27 | #define zzip_entry_extern extern |
---|
| 28 | |
---|
| 29 | zzip_off_t |
---|
| 30 | zzip_entry_data_offset(ZZIP_ENTRY* entry); |
---|
| 31 | |
---|
| 32 | char* _zzip_restrict |
---|
| 33 | zzip_entry_strdup_name(ZZIP_ENTRY* entry); |
---|
| 34 | |
---|
| 35 | |
---|
| 36 | zzip_entry_extern ZZIP_ENTRY* _zzip_restrict |
---|
| 37 | zzip_entry_findfirst(FILE* file); |
---|
| 38 | |
---|
| 39 | zzip_entry_extern ZZIP_ENTRY* _zzip_restrict |
---|
| 40 | zzip_entry_findnext(ZZIP_ENTRY* _zzip_restrict entry); |
---|
| 41 | |
---|
| 42 | #define zzip_entry_findlast zzip_entry_free |
---|
| 43 | #define zzip_entry_findlastfile zzip_entry_free |
---|
| 44 | #define zzip_entry_findlastmatch zzip_entry_free |
---|
| 45 | |
---|
| 46 | zzip_entry_extern int |
---|
| 47 | zzip_entry_free(ZZIP_ENTRY* entry); |
---|
| 48 | |
---|
| 49 | char* _zzip_restrict |
---|
| 50 | zzip_entry_strdup_name(ZZIP_ENTRY* entry); |
---|
| 51 | char* |
---|
| 52 | zzip_entry_to_data(ZZIP_ENTRY* entry); |
---|
| 53 | |
---|
| 54 | zzip_entry_extern ZZIP_ENTRY* _zzip_restrict |
---|
| 55 | zzip_entry_findfile(FILE* disk, char* filename, |
---|
| 56 | ZZIP_ENTRY* _zzip_restrict old, |
---|
| 57 | zzip_strcmp_fn_t compare); |
---|
| 58 | zzip_entry_extern ZZIP_ENTRY* _zzip_restrict |
---|
| 59 | zzip_entry_findmatch(FILE* disk, char* filespec, |
---|
| 60 | ZZIP_ENTRY* _zzip_restrict old, |
---|
| 61 | zzip_fnmatch_fn_t compare, int flags); |
---|
| 62 | |
---|
| 63 | zzip_entry_extern ZZIP_ENTRY_FILE* _zzip_restrict |
---|
| 64 | zzip_entry_fopen (ZZIP_ENTRY* entry, int takeover); |
---|
| 65 | |
---|
| 66 | zzip_entry_extern ZZIP_ENTRY_FILE* _zzip_restrict |
---|
| 67 | zzip_entry_ffile (FILE* disk, char* filename); |
---|
| 68 | |
---|
| 69 | zzip_entry_extern _zzip_size_t |
---|
| 70 | zzip_entry_fread (void* ptr, _zzip_size_t size, _zzip_size_t nmemb, |
---|
| 71 | ZZIP_ENTRY_FILE* file); |
---|
| 72 | zzip_entry_extern int |
---|
| 73 | zzip_entry_fclose (ZZIP_ENTRY_FILE* file); |
---|
| 74 | int |
---|
| 75 | zzip_entry_feof (ZZIP_ENTRY_FILE* file); |
---|
| 76 | |
---|
| 77 | #endif |
---|
| 78 | |
---|