X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/064dc9896dce3d936a5876b927cece0f44808912..d3112f9c7895a9f419c365eabe7db963e148454a:/tipo3/emufs.h diff --git a/tipo3/emufs.h b/tipo3/emufs.h index cf16da9..2cbc027 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,7 @@ 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); #endif