+/** Agregar una factura */
+void fact_agregar(char *s);
+
+/** Modificar una factura */
+void fact_modificar(char *s);
+
+/** Eliminar una factura */
+void fact_eliminar(char *s);
+
+/** Obtiene la list de facturas */
+t_LstFacturas *fact_get_lst();
+