added mc_init
[physik/computational_physics.git] / g_plot.h
1 /*
2  * g_plot.h - defines, prototypes
3  *
4  * author: hackbard@hackdaworld.dyndns.org
5  *
6  */
7
8 #define MAX_FILE_OPENS 32
9 #define MAX_CHAR_FNAME 64
10
11 #define TYPE_INT 0
12 #define TYPE_DOUBLE 1
13
14 int gp_init(char *f_name);
15 int gp_add_data(int fd,void *data,int x_c,int y_c,int type);
16 int gp_close(int fd);
17