packvfs

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/pvfs_impl.h	Fri Aug 02 06:03:38 2013 +0300
     1.3 @@ -0,0 +1,17 @@
     1.4 +#ifndef PVFS_IMPL_H_
     1.5 +#define PVFS_IMPL_H_
     1.6 +
     1.7 +#include <stdio.h>
     1.8 +#include <dirent.h>
     1.9 +
    1.10 +struct PVFS_FILE {
    1.11 +	int real;
    1.12 +	FILE *fp;
    1.13 +};
    1.14 +
    1.15 +struct PVFS_DIR {
    1.16 +	int real;
    1.17 +	DIR *dir;
    1.18 +};
    1.19 +
    1.20 +#endif	/* PVFS_IMPL_H_ */