/*
 *  historyManager.h
 *  Wcalc
 *
 *  Created by Kyle Wheeler on Mon Jan 21 2002.
 *  Copyright (c) 2001 Kyle Wheeler. All rights reserved.
 *
 */

#ifndef WCALC_HISTORY_MANAGER

#include "number.h"

void clearHistory(void);
void addToHistory(char *, Number);
char *historynum(int, int);
size_t historyLength(void);

extern short allow_duplicates;
extern short recalculate;
#endif


syntax highlighted by Code2HTML, v. 0.9.1