packvfs

view src/pvfs_impl.h @ 2:dc23ab0545a6

- fleshed out some more fucntions with the code for the case where file/dir are real - added install/uninstall targets to the makefile - added pvfsh (packvfs shell) test program
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 04 Nov 2013 03:50:55 +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_ */