]> 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 939493b040128444dfae7157790fda4eebcfdc32..90a200b7094010a05946bac36abea188b78bca65 100644 (file)
@@ -36,6 +36,8 @@
  */
 
 #include "did.h"
  */
 
 #include "did.h"
+#include <string.h>
+#include <unistd.h>
 
 int emufs_did_get_last(EMUFS *emu)
 {
 
 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);
        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);
        
        if ( (f_did = fopen(name_f_did,"r")) == NULL) return -1; /*ERROR*/
        fseek(f_did, 0, SEEK_END);
@@ -76,7 +78,7 @@ int emufs_did_agregar(EMUFS *emu, int ID)
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
        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,"a+")) == NULL) return -1;
        fwrite(&ID, sizeof(int), 1, f_did);
        
        if ( (f_did = fopen(name_f_did,"a+")) == NULL) return -1;
        fwrite(&ID, sizeof(int), 1, f_did);