]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - tipo3/emufs.c
Se actualizan los archivos indice, falta implementar boorar_registro
[z.facultad/75.06/emufs.git] / tipo3 / emufs.c
1
2 #include "emufs.h"
3
4 EMUFS *emufs_crear(const char *filename, int tipo)
5 {
6         EMUFS *tmp = (EMUFS *)malloc(sizeof(EMUFS));
7
8         switch (tipo) {
9                 case T1:
10                 break;
11                 case T2:
12                 break;
13                 case T3:
14                 break;
15                 default:
16                         free(tmp);
17                         return NULL;
18         }
19
20         return tmp;
21 }
22
23