X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/720b9cc2195c640096b5461399fe142fa987c5e4..558540cc250c19c9617a3f3f12a0f5da38c9c84a:/emufs/tipo3_main.c diff --git a/emufs/tipo3_main.c b/emufs/tipo3_main.c index 394b3e4..8aaf748 100644 --- a/emufs/tipo3_main.c +++ b/emufs/tipo3_main.c @@ -35,6 +35,8 @@ #include #include #include "emufs.h" +#include "idx.h" +#include "fsc.h" int main(int argc, char *argv[]) @@ -85,19 +87,27 @@ int main(int argc, char *argv[]) n8 = fp->grabar_registro(fp, i, 100, &err); ver_archivo_FS(fp); - + + if ( fp->borrar_registro(fp, n1) == -1) printf("la cague %d\n",n1); + if ( fp->borrar_registro(fp, n2) == -1) printf("la cague %d\n",n2); if ( fp->borrar_registro(fp, n3) == -1) printf("la cague %d\n",n3); + if ( fp->borrar_registro(fp, n4) == -1) printf("la cague %d\n",n4); if ( fp->borrar_registro(fp, n5) == -1) printf("la cague %d\n",n5); +/* if ( fp->borrar_registro(fp, n6) == -1) printf("la cague %d\n",n6); if ( fp->borrar_registro(fp, n7) == -1) printf("la cague %d\n",n7); + if ( fp->borrar_registro(fp, n8) == -1) printf("la cague %d\n",n8); + */ + b_ptr = fp->leer_registro(fp, n7, ®_size, &err); - b_ptr = fp->leer_registro(fp, n4, ®_size, &err); - printf("Recuperado : %s\n", b_ptr); free(b_ptr); ver_archivo_FS(fp); + printf("la cantidad de registros eeeeesssss: %d\n", emufs_idx_get_cant_reg(fp)); + printf("la cantidad de espacio libre es: %d\n", emufs_fsc_get_total_fs(fp)); + emufs_destruir(fp); return 0;