X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/064dc9896dce3d936a5876b927cece0f44808912..a1a3dc9f23281f1e4efdc2fe54a0d1b0ddc8aac3:/tipo3/emufs.h diff --git a/tipo3/emufs.h b/tipo3/emufs.h index cf16da9..3772127 100644 --- a/tipo3/emufs.h +++ b/tipo3/emufs.h @@ -3,7 +3,6 @@ #include #include -#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