X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/85260e82dfbd2205f0e9e2d62bbd48db79149e99..a1a3dc9f23281f1e4efdc2fe54a0d1b0ddc8aac3:/tipo3/main.c diff --git a/tipo3/main.c b/tipo3/main.c index 8861a4d..9164ac6 100644 --- a/tipo3/main.c +++ b/tipo3/main.c @@ -25,7 +25,7 @@ int main() fp = emufs_crear("articulos", T3, 220, 100); - + n1 = fp->grabar_registro(fp, a, 100); n2 = fp->grabar_registro(fp, c, 100); n3 = fp->grabar_registro(fp, d, 100); @@ -42,12 +42,14 @@ int main() printf("ID6 = %d\n", n6); printf("ID7 = %d\n", n7); - fp->leer_registro(fp, n7, b, 100); + fp->leer_registro(fp, n4, b, 100); + printf("Ok\n"); printf("Recuperado : %s\n", b); - emufs_destruir(fp); ver_archivo_FS(fp); + printf("pase\n"); + emufs_destruir(fp); return 0; }