]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/did.c
varios cambios
[z.facultad/75.06/emufs.git] / emufs / did.c
index 556f07b5dfea80c7b816bba8e245741502c5e878..6e13fd5cae3d5907cd8b35f7e370d7c7185480d4 100644 (file)
@@ -38,8 +38,8 @@
 
 #include "did.h"
 #include "error.h"
 
 #include "did.h"
 #include "error.h"
+#include "common.h"
 #include <unistd.h>
 #include <unistd.h>
-#include <sys/types.h>
 #include <string.h>
 
 int emufs_did_crear(EMUFS* efs)
 #include <string.h>
 
 int emufs_did_crear(EMUFS* efs)
@@ -125,7 +125,7 @@ int emufs_did_agregar(EMUFS *efs, EMUFS_REG_ID n_regid)
        char name_f_did[255];
        
        strcpy(name_f_did, efs->nombre);
        char name_f_did[255];
        
        strcpy(name_f_did, efs->nombre);
-       strcat(name_f_did,  EMUFS_DID_EXT);
+       strcat(name_f_did, EMUFS_DID_EXT);
        
        if ( (f_did = fopen(name_f_did,"a+")) == NULL) return -1;
        fwrite(&n_regid, sizeof(EMUFS_REG_ID), 1, f_did);
        
        if ( (f_did = fopen(name_f_did,"a+")) == NULL) return -1;
        fwrite(&n_regid, sizeof(EMUFS_REG_ID), 1, f_did);
@@ -134,3 +134,11 @@ int emufs_did_agregar(EMUFS *efs, EMUFS_REG_ID n_regid)
        return 0;
 }
 
        return 0;
 }
 
+long emufs_did_get_file_size(EMUFS* efs, int* err)
+{
+       char name[255];
+       strcpy(name, efs->nombre);
+       strcat(name, EMUFS_DID_EXT);
+       return emufs_common_get_file_size(name, err);
+}
+