move all code relative to readline into separate file
[calc.git] / storage.h
... / ...
CommitLineData
1#ifndef __STORAGE_H__
2#define __STORAGE_H__
3
4#include "tabular.h"
5
6/* global variables */
7
8extern tab_t *storage;
9
10/* storage functions */
11
12int memory (int nb);
13double store (int id, double value);
14double recall (int id);
15double increase (int id);
16double decrease (int id);
17void display (void);
18void clear ();
19
20#endif /* __STORAGE_H__ */
21
22/* vim: set ts=4 sw=4 et: */