ledger/reconcile.h
John Wiegley f2390964cb (search_for_balance): Sped things up by a factor of ten. Still won't
help for uncleared lists >~27 items (2^27), but it helps.
2008-04-13 02:40:56 -04:00

15 lines
300 B
C++

#ifndef _RECONCILE_H
#define _RECONCILE_H
#include "journal.h"
namespace ledger {
void reconcile_transactions(transactions_list& xacts,
value_t& balance,
const time_t cutoff,
const bool all_pending = false);
} // namespace ledger
#endif // _RECONCILE_H