X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/e0748aab538eb09d53d767a305aaccc86489bf23..f41ad014e7d68321ff67258b99817651ecdab0bb:/tipo3/main.c diff --git a/tipo3/main.c b/tipo3/main.c index 9164ac6..e74634e 100644 --- a/tipo3/main.c +++ b/tipo3/main.c @@ -2,19 +2,29 @@ #include #include "emufs.h" -int main() +int main(int argc, char *argv[]) { EMUFS *fp; - char a[100]; - char c[100]; int n1, n2, n3, n4, n5, n6, n7; + char a[100]; char b[100]; + char c[100]; char d[100]; char e[100]; char f[100]; char g[100]; char h[100]; - + + if (argc != 2) { + printf("Modo de uso : %s tam_bloque\n", argv[0]); + return 1; + } + + if (atoi(argv[1]) < 104) { + printf("El tamaƱo de bloque debe ser mayor a 104\n"); + return 1; + } + strcpy(a, "1234567890"); strcpy(c, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO"); strcpy(d, "ABCDEFGHIJKL"); @@ -24,7 +34,7 @@ int main() strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1"); - fp = emufs_crear("articulos", T3, 220, 100); + fp = emufs_crear("articulos", T3, atoi(argv[1]), 100); n1 = fp->grabar_registro(fp, a, 100); n2 = fp->grabar_registro(fp, c, 100); @@ -34,22 +44,25 @@ int main() 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); + printf("ID0 = %d\n", n1); + printf("ID1 = %d\n", n2); + printf("ID2 = %d\n", n3); + printf("ID3 = %d\n", n4); + printf("ID4 = %d\n", n5); + printf("ID5 = %d\n", n6); + printf("ID6 = %d\n", n7); - fp->leer_registro(fp, n4, b, 100); + fp->borrar_registro(fp, n1, 100); + fp->borrar_registro(fp, n3, 100); + fp->borrar_registro(fp, n4, 100); + fp->leer_registro(fp, n7, b, 100); - printf("Ok\n"); printf("Recuperado : %s\n", b); ver_archivo_FS(fp); - printf("pase\n"); + emufs_destruir(fp); + return 0; }