X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/3283f75e5ca5fe1193054dfacd5f3a131f17b74d..71026445ea6cd499c9f8d194ddbdc9607665a719:/emufs/tipo1_main.c diff --git a/emufs/tipo1_main.c b/emufs/tipo1_main.c index b40749b..664e3db 100644 --- a/emufs/tipo1_main.c +++ b/emufs/tipo1_main.c @@ -118,6 +118,15 @@ int main(int argc, char* argv[]) { } printf("Registro 2 (id = %lu) borrado!.\n", id2); + /* Lee registro 3 (desplazado a izquierda) */ + reg = efs->leer_registro(efs, id3, &size, &err); + if (err) { + printf("No se pudo leer el registro 3 (%d).\n", err); + goto out; + } + printf("El contenido del registro 3 es: '%s'.\n", reg); + free(reg); + /* Ve archivos auxiliares */ printf("\n--------------------------------------------------\n"); printf("Archivos auxiliares:\n\n");