]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - tipo3/main.c
* Le agregue el malloc debugger al tipo3 y ahora no falla. Me hace sospechar que...
[z.facultad/75.06/emufs.git] / tipo3 / main.c
index 4858f37f2e470c7ff88388b8db51a164f7ebb6c1..09fb9d53378f82668842f38b5a32202c72e67ea0 100644 (file)
@@ -6,11 +6,22 @@ int main()
 {
        EMUFS *fp;
        char a[] = "1234567890";
+       int n;
+       char b[100];
 
        fp = emufs_crear("articulos", T3, 512, 100);
 
-       printf("ID = %d\n", fp->grabar_registro(fp, a, strlen(a)+1));
+       n = fp->grabar_registro(fp, a, strlen(a)+1);
+
+       printf("ID = %d\n", n);
+
+       fp->leer_registro(fp, n, b, 100);
+
+       printf("Ok\n");
+       printf("Recuperado : %s\n", b);
 
        emufs_destruir(fp);
+
+       MD_Listar();
        return 0;
 }