now we need to init the mstorage objects

This commit is contained in:
leitner
2004-02-04 23:27:01 +00:00
parent 59d2cdcab8
commit 3c4e6bbf90
5 changed files with 25 additions and 8 deletions

7
mstorage_init.c Normal file
View File

@@ -0,0 +1,7 @@
#include <mstorage.h>
void mstorage_init(mstorage_t* p) {
p->root=0;
p->mapped=p->used=0;
p->fd=-1;
}