+ fp = emufs_crear("articulos", T3, 512, 100);
+
+ n1 = fp->grabar_registro(fp, a, strlen(a)+1);
+ n2 = fp->grabar_registro(fp, c, strlen(c)+1);
+
+ printf("ID1 = %d\n", n1);
+ printf("ID2 = %d\n", n2);
+
+ fp->leer_registro(fp, n1, b, 100);
+
+ printf("Ok\n");
+ printf("Recuperado : %s\n", b);
+
+ emufs_destruir(fp);
+
+ return 0;