]> 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 c9fd819107a402fea1ea00ebaaff27af6afc5c39..09fb9d53378f82668842f38b5a32202c72e67ea0 100644 (file)
@@ -1,14 +1,27 @@
 #include <stdio.h>
-typedef struct block_reg_t{
-       int block;
-       int reg;
-}block_reg_t;
-int main ( )
+#include <string.h>
+#include "emufs.h"
+
+int main()
 {
-       struct block_reg_t r;
-               
-       printf("sizeof(struct block_reg_t) = %d\n", sizeof(struct block_reg_t));
-       printf("sizeof(r) = %d\n", sizeof(r));  
+       EMUFS *fp;
+       char a[] = "1234567890";
+       int n;
+       char b[100];
+
+       fp = emufs_crear("articulos", T3, 512, 100);
+
+       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;
 }