]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - tipo3/emufs.h
limpio un poquito el codigo, sale con fritas esto./main./main... falta borrar_registr...
[z.facultad/75.06/emufs.git] / tipo3 / emufs.h
index cf16da931f52bb98381c1bcfc326a53c04b533b0..3772127a50c10bbe9c8d88263a2205341f51561d 100644 (file)
@@ -3,7 +3,6 @@
 
 #include <stdlib.h>
 #include <stdio.h>
-#include "malloc_debug.h"
 
 typedef enum {T1, T2, T3} EMUFS_TYPE;
 
@@ -18,6 +17,9 @@ typedef struct _emu_fs_t {
 } EMUFS;
 
 EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg);
+EMUFS *emufs_abrir(const char *filename);
 
 int emufs_destruir(EMUFS *e);
+
+int ver_archivo_FS(EMUFS *emu);
 #endif