char g[100];
char h[100];
char i[100];
+ char* b_ptr;
+ int err;
if (argc != 2) {
printf("Modo de uso : %s tam_bloque\n", argv[0]);
fp->borrar_registro(fp, n2, 100);
fp->borrar_registro(fp, n6, 100);*/
fp->borrar_registro(fp, n1);
- printf("borre el registro de id = %d\n",n1);
- fp->leer_registro(fp, n2, b, 100);
+ printf("borre el registro de id = %lu\n",n1);
+ b_ptr = fp->leer_registro(fp, n2, &err);
- printf("Recuperado : %s\n", b);
+ printf("Recuperado : %s\n", b_ptr);
+
+ free(b_ptr);
ver_archivo_FS(fp);