X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/2cf0a2680095ad3021e82cb1d209aed69f14585d..eb6f85cae7e6a889c11f93203d8281b9ac64b7ce:/emufs/tipo1_test.c diff --git a/emufs/tipo1_test.c b/emufs/tipo1_test.c index 188ef8b..6cb869d 100644 --- a/emufs/tipo1_test.c +++ b/emufs/tipo1_test.c @@ -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");