X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/54219fe4a06be132b4f4f7448b7621647fe31ce2..7a86d06abb03ced86951067cf341f228acfc9f30:/emufs/emufs.c diff --git a/emufs/emufs.c b/emufs/emufs.c index 28fc248..b62702b 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -73,10 +73,10 @@ EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, uns case T3: tmp->tipo = T3; tmp->tam_bloque = tam_bloque; - tmp->leer_bloque = leer_bloque; - tmp->leer_registro = leer_registro; - tmp->grabar_registro = grabar_registro; - tmp->borrar_registro = borrar_registro; + tmp->leer_bloque = emufs_tipo3_leer_bloque; + tmp->leer_registro = emufs_tipo3_leer_registro; + tmp->grabar_registro = emufs_tipo3_grabar_registro; + tmp->borrar_registro = emufs_tipo3_borrar_registro; tmp->nombre = str_dup(filename); strcpy(name, filename); @@ -151,10 +151,10 @@ EMUFS *emufs_abrir(const char *filename) case T3: tmp->tipo = tipo; fread(&tmp->tam_bloque, sizeof(int), 1, fp); - tmp->leer_bloque = leer_bloque; - tmp->leer_registro = leer_registro; - tmp->grabar_registro = grabar_registro; - tmp->borrar_registro = borrar_registro; + tmp->leer_bloque = emufs_tipo3_leer_bloque; + tmp->leer_registro = emufs_tipo3_leer_registro; + tmp->grabar_registro = emufs_tipo3_grabar_registro; + tmp->borrar_registro = emufs_tipo3_borrar_registro; tmp->nombre = str_dup(filename); }