]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.c
Borro parte redundante.
[z.facultad/75.06/emufs.git] / emufs / idx.c
index bd20b63070233247ae9b77d76d28986d87a6a93b..ec869663f027d6725a3a1f6718a7e7dd72c5991a 100644 (file)
@@ -38,6 +38,7 @@
 #include "idx.h"
 #include "did.h"
 #include "error.h"
+#include "common.h"
 #include <stdlib.h>
 #include <strings.h>
 #include <unistd.h>
@@ -51,7 +52,6 @@ FILE* emufs_idx_abrir(EMUFS* efs, const char* mode)
        filename = (char*) malloc(sizeof(char) * (strlen(efs->nombre)
                                + strlen(EMUFS_IDX_EXT) + 1));
        if (filename == NULL) {
-               /* TODO Manejo de errores */
                return NULL;
        }
        strcpy(filename, efs->nombre);
@@ -278,3 +278,11 @@ int emufs_idx_actualizar(EMUFS *emu, int ID, EMUFS_BLOCK_ID bloque)
        fclose(f_idx);
        return 0;
 }
+
+long emufs_idx_get_file_size(EMUFS* efs, int* err)
+{
+       char name[255];
+       strcpy(name, efs->nombre);
+       strcat(name, EMUFS_IDX_EXT);
+       return emufs_common_get_file_size(name, err);
+}