packvfs

view src/pvfs_impl.h @ 0:df5e9ee65a50

packvfs initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 02 Aug 2013 06:03:38 +0300
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_ */