packvfs

view src/pvfs_impl.h @ 3:ef6c1472607f

jesus fucking christ that was easy... written a test prog "zipcat" to try out zlib's contrib library "minizip", to list and read files out of zip archives directly...
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 04 Nov 2013 06:46:17 +0200
parents
children
line source
1 #ifndef PVFS_IMPL_H_
2 #define PVFS_IMPL_H_
4 #include <stdio.h>
5 #include <dirent.h>
7 struct PVFS_FILE {
8 int real;
9 FILE *fp;
10 };
12 struct PVFS_DIR {
13 int real;
14 DIR *dir;
15 };
17 #endif /* PVFS_IMPL_H_ */