- salida = (char *)malloc((*size)-sizeof(unsigned int)+11);
- sprintf(salida, "(%08d)", *((unsigned int *)ptr));
- tmp1 = salida+10;
- tmp = ptr+sizeof(unsigned int);
- while (tmp < (ptr + (*size))) {
- if (*tmp == '\0') {
- (*tmp1) = '|';
- } else {
- (*tmp1) = (*tmp);
+
+ /* Calculo cuantos headers de registros va a haber en el archivo */
+ cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
+ /* El tamaño del nuevo array lo calculo asi :
+ *
+ * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
+ * + 10*(cant_headers+cant_registros) +1
+ *
+ * En tipo3, la cantidad de headers y cant de registros es la misma
+ * El 10 es por : (XXXXXXXX)
+ * +1 == Por el \0
+ */
+ salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
+ tmp = ptr;
+ tmp1 = salida;
+ pos_actualizada = 0;
+ while (i<cant_header) {
+ if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
+ (*pos_actual) = tmp1-salida;
+ pos_actualizada = 1;
+ }
+ /* Pongo el ID del registro */
+ sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(unsigned int);
+ /* Pongo el campo numero del registro */
+ sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(unsigned int);
+ j = 0;
+ while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
+ if (*tmp == '\0') {
+ (*tmp1) = '|';
+ } else {
+ (*tmp1) = (*tmp);
+ }
+ tmp++;
+ tmp1++;
+ j++;