Added dir_entry struct with inode, type ad name info

This commit is contained in:
pjht 2019-04-21 15:15:19 -05:00
parent c851e2a2ca
commit f612cea891

View File

@ -17,6 +17,12 @@ char** devs;
int num_mnts;
int max_mnts;
typedef struct {
uint32_t inode;
char type;
char* name;
} dir_entry;
typedef struct {
int num;
inode* inode;