1 /*************
2  * Header file for printnum.c
3  * 1999 E. Rouat
4  ************/
5 
6 #ifndef ngspice_PRINTNUM_H
7 #define ngspice_PRINTNUM_H
8 
9 #include "ngspice/dstring.h"
10 
11 void printnum(char *buf, double num);
12 int printnum_ds(DSTRING *p_dstring, double num);
13 
14 #endif
15