]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/did.c
* Limpio el codigo de tipo3
[z.facultad/75.06/emufs.git] / emufs / did.c
index ac09cab3e47931a7455eeaccae7a203f130f8c51..90a200b7094010a05946bac36abea188b78bca65 100644 (file)
@@ -36,6 +36,8 @@
  */
 
 #include "did.h"
+#include <string.h>
+#include <unistd.h>
 
 int emufs_did_get_last(EMUFS *emu)
 {
@@ -44,7 +46,7 @@ int emufs_did_get_last(EMUFS *emu)
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
-       strcat(name_f_did, ".did");
+       strcat(name_f_did,  EMUFS_DID_EXT);
        
        if ( (f_did = fopen(name_f_did,"r")) == NULL) return -1; /*ERROR*/
        fseek(f_did, 0, SEEK_END);
@@ -68,3 +70,19 @@ int emufs_did_get_last(EMUFS *emu)
        }
        return id;
 }
+
+/*agrego un elemento al archivo */
+int emufs_did_agregar(EMUFS *emu, int ID)
+{
+       FILE *f_did;
+       char name_f_did[255];
+       
+       strcpy(name_f_did, emu->nombre);
+       strcat(name_f_did,  EMUFS_DID_EXT);
+       
+       if ( (f_did = fopen(name_f_did,"a+")) == NULL) return -1;
+       fwrite(&ID, sizeof(int), 1, f_did);
+       fclose(f_did);
+       
+       return 0;
+}