]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - tipo3/main.c
puse un archivo que no era, ahora si tira la lista de bloques y registros
[z.facultad/75.06/emufs.git] / tipo3 / main.c
index c9fd819107a402fea1ea00ebaaff27af6afc5c39..9164ac6e4956fe65e3ade117ff728e5bfaeb29c8 100644 (file)
@@ -1,14 +1,55 @@
 #include <stdio.h>
 #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[100];
+       char c[100];
+       int n1, n2, n3, n4, n5, n6, n7;
+       char b[100];
+       char d[100];
+       char e[100];
+       char f[100];
+       char g[100];
+       char h[100];
+       
+       strcpy(a, "1234567890");
+       strcpy(c, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
+       strcpy(d, "ABCDEFGHIJKL");
+       strcpy(e, "HOLA soy un registro nuevo, me llamo E");
+       strcpy(f, "yo soy F");
+       strcpy(g, "me llamo G y quiero estar en el bloque 1");
+       strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1");
+       
+       
+       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);
+       n4 = fp->grabar_registro(fp, e, 100);
+       n5 = fp->grabar_registro(fp, f, 100);
+       n6 = fp->grabar_registro(fp, g, 100);
+       n7 = fp->grabar_registro(fp, h, 100);
+
+       printf("ID1 = %d\n", n1);
+       printf("ID2 = %d\n", n2);
+       printf("ID3 = %d\n", n3);
+       printf("ID4 = %d\n", n4);
+       printf("ID5 = %d\n", n5);
+       printf("ID6 = %d\n", n6);
+       printf("ID7 = %d\n", n7);
+
+       fp->leer_registro(fp, n4, b, 100);
+
+
+       printf("Ok\n");
+       printf("Recuperado : %s\n", b);
 
 
+       ver_archivo_FS(fp);
+       printf("pase\n");
+       emufs_destruir(fp);
        return 0;
 }
        return 0;
 }