]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1_test.c
* Se arregla para que todo compile.
[z.facultad/75.06/emufs.git] / emufs / tipo1_test.c
index 188ef8bc45b52efc31c034619c893681aa235792..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) == -1) {
-               printf("No se pudo leer el registro 1.\n");
-               return 1;
-       }
-       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");