nodo = lst_facturas->primero;
while (nodo) {
if (nodo->numero == fact->numero) {
- lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
- lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
+ /*lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);*/
+ /*lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);*/
eliminar_nodo_factura(lst_facturas, nodo);
break;
}