new type tab_t and rebuild of stack
[calc.git] / storage.h
CommitLineData
a24bd519
LM
1#ifndef __STORAGE_H__
2#define __STORAGE_H__
3
4/* global variables */
5
6extern double *storage;
7
8extern int storage_size;
9
10/* storage functions */
11
12void memory (int nb);
13double store (int index, double value);
14double recall (int index);
15double increase (int index);
16double decrease (int index);
17void display (void);
18void clear ();
19
20#endif /* __STORAGE_H__ */
21
22/* vim: set ts=4 sw=4 et: */