Add recursive scanning
[erinaco.git] / memmap.h
blob2107dcdcb239e5e6d09c22374d0c7b560df70856
1 /* include <sys/mman.h> */
2 struct memory {
3 void *data;
4 size_t length;
5 };
7 int mem_map_read(struct memory *mem, int fd);
8 void mem_unmap(struct memory *mem);