libfswrap/include/fswrap.h

21 lines
273 B
C

#ifndef FSWRAP_H
#define FSWRAP_H
#include <stddef.h>
struct fswrap
{
const struct fswrap_entry
{
const char *pathname;
const void *buf;
long sz;
} *entries;
size_t n;
};
extern const struct fswrap *const fswrap_entries;
#endif