if (node->type == XML_ELEMENT_NODE) {
if (strcmp(node->name, "ARTICULO") == 0) {
t_Articulo art;
- art.numero = 1; atoi(xmlGetProp(node, "NroArtículo"));
+ art.numero = atoi(xmlGetProp(node, "NroArtículo"));
strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
/* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, &art, sizeof(t_Articulo));
tmp->array[cant].numero = art.numero;
- printf("tmp->arra[%d].numero = 1\n", cant);
+ printf("ID(%d) -> (%d,%d)\n", cant, art.numero, tmp->array[cant].num_reg);
++cant;
}
}
}
+ tmp->cant = cant;
printf("%d\n", cant);
xmlFreeDoc(document);
xmlCleanupParser();