+char *procesar_registro_articulo_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+ char *salida, *tmp;
+ char *in;
+ int i;
+ EMUFS_REG_SIZE tam_data;
+ if (ptr == NULL) return NULL;
+
+ (*size) = *size - sizeof(EMUFS_REG_SIZE) - sizeof(EMUFS_REG_ID) + 21;
+ (*ancho) = *size-101;
+ salida = (char *)malloc(*size);
+ memset(salida, '.', *size);
+
+ PERR("Voy por el espacio antes");
+ for(i=0; i < *pos_actual; i++) {
+ /* Los datos que tengo por ahora los pongo enmascarados! */
+ copy_char(&salida[i], in);
+ in++;
+ }
+ tmp = salida + *pos_actual;
+ in = ptr + *pos_actual;
+
+ PERR("Voy por el header");
+ /* ID de registro */
+ sprintf(tmp, "(%08lu)", *((EMUFS_REG_ID *)in));
+ tmp += 10;
+ in += sizeof(EMUFS_REG_ID);
+ /* Tamaño de registro */
+ sprintf(tmp, "{%08lu}", *((EMUFS_REG_SIZE *)in));
+ tam_data = *((EMUFS_REG_SIZE *)in);
+ tmp += 10;
+ in += sizeof(EMUFS_REG_SIZE);
+ PERR("Voy por la data");
+ i = 0;
+ while (i < tam_data) {
+ copy_char(tmp, in);
+ tmp++;
+ in++;
+ i++;
+ }
+ PERR("Voy por el espacio despues");
+ for(i=0; i < 100-*pos_actual; i++) {
+ copy_char(tmp, in);
+ tmp++;
+ in++;
+ }
+
+ free(ptr);
+ PERR("LISTO");
+ salida[*size-1] = '\0';
+ return salida;
+}
+