]> 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 40418e41e21bb6c84844a87f067370a7ead0245c..09fb9d53378f82668842f38b5a32202c72e67ea0 100644 (file)
@@ -1,20 +1,27 @@
 #include <stdio.h>
+#include <string.h>
+#include "emufs.h"
 
-int main ( )
+int main()
 {
-char v[39999];
-unsigned int ID_aux = 0, a= 0,b= 0,c=0,d=0;
-v[0]=0x00;
-v[1]=0x31;
-v[2]=0xC7;
-v[3]=0x06;
-a = v[0];
-b = v[1];
-c = v[2];
-d = v[3];
-ID_aux = (d << 0 ) | (c << 8) |  ( b << 16) | (a << 24);
-
-printf("el numero es = %x\n", ID_aux);
+       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;
 }