check parenthesis
[calc.git] / format.h
CommitLineData
a24bd519
LM
1#ifndef __FORMAT_H__
2#define __FORMAT_H__
3
4/* global variables */
5
6extern char *format;
7extern char *minform;
8
9/* print function */
10
11void set_format (char *prompt, int precision);
12
13void free_format ();
14
15double print (double value);
16
17#endif /* __FORMAT_H__ */
18
19/* vim: set ts=4 sw=4 et: */