waddstr(win, s);
}
- if ((fp->tipo == T1) || (fp->tipo == T3)) {
- wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
- wattroff(win, A_BOLD);
- sprintf(s, "%lu", stats.cant_bloques);
- waddstr(win, s);
- }
-
- wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Cant. Registros : ");
- wattroff(win, A_BOLD);
- sprintf(s, "%lu", stats.cant_registros);
- waddstr(win, s);
- wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
- wattroff(win, A_BOLD);
- sprintf(s, "%lu bytes", stats.tam_archivo);
- waddstr(win, s);
-
- wattron(win, A_BOLD);
- mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
- wattroff(win, A_BOLD);
- sprintf(s, "%lu bytes", stats.tam_archivos_aux);
- waddstr(win, s);
-
wattron(win, A_BOLD);
mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
wattroff(win, A_BOLD);
sprintf(s, "%lu bytes", stats.min_fs);
waddstr(win, s);
+ wattron(win, A_BOLD);
+ mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu bytes", stats.tam_archivo);
+ waddstr(win, s);
+
+ wattron(win, A_BOLD);
+ mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu bytes", stats.tam_archivos_aux);
+ waddstr(win, s);
+
+ if ((fp->tipo == T1) || (fp->tipo == T3)) {
+ wattron(win, A_BOLD);
+ mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu", stats.cant_bloques);
+ waddstr(win, s);
+ }
+
+ wattron(win, A_BOLD);
+ mvwaddstr(win, i++, 1, "Cant. Registros : ");
+ wattroff(win, A_BOLD);
+ sprintf(s, "%lu", stats.cant_registros);
+ waddstr(win, s);
wattron(win, A_BLINK);
mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
prop = xml_get_prop(node, "NroArtículo");
tmp[count-1].numero = atoi(prop);
xmlFree(prop);
- strcpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
- strcpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
+ strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
+ tmp[count-1].cv[8] = '\0';
+ strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
+ tmp[count-1].pvu[8] = '\0';
}
}
node = node->next;
prop = xml_get_prop(node, "NroArtículo");
tmp[count].numero = atoi(prop);
xmlFree(prop);
- strcpy(tmp[count].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
- strcpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
+ strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
+ tmp[count-1].cv[8] = '\0';
+ strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
+ tmp[count-1].pvu[8] = '\0';
count++;
}
}