]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1_test.c
* BUGFIX : habia 2 parametros mal al llamar a IDX_AGREGAR en tipo3 grabar_bloque
[z.facultad/75.06/emufs.git] / emufs / tipo1_test.c
index bb18c19e8b3c9385c0562f4ed95bb604fc09a17a..6cb869dafbbce9d11355009c332ea5f2982b8c17 100644 (file)
@@ -2,8 +2,6 @@
 
 int main(int argc, char* argv[]) {
        EMUFS* efs;
-       char registro1[5];
-       char registro2[6];
        if (argc < 2) {
                printf("Faltan argumentos! %s [nombre]\n", argv[0]);
                return 1;
@@ -32,13 +30,6 @@ int main(int argc, char* argv[]) {
                return 1;
        }
 
-       if (efs->leer_registro(efs, 0, registro1, 4) == -1) {
-               printf("No se pudo leer el registro 1.\n");
-               return ;
-       }
-       registro1[4] = '\0';
-       printf("Registro 1: %s\n", registro1);
-
        /*
        if (efs->leer_registro(efs, 1, registro2, 5) == -1) {
                printf("No se pudo leer el registro 2.\n");
@@ -51,4 +42,3 @@ int main(int argc, char* argv[]) {
        emufs_destruir(efs);
        return 0;
 }
-