File: calc.h

package info (click to toggle)
xppaut 8.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,332 kB
  • sloc: ansic: 74,690; makefile: 127; sh: 92
file content (17 lines) | stat: -rw-r--r-- 345 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _calc_h_
#define _calc_h_

#include <X11/Xlib.h>


void draw_calc(Window w);
void make_calc(double z);
void quit_calc(void);
void ini_calc_string(char *name, char *value, int *pos, int *col);
void q_calc(void);
int do_calc(char *temp, double *z);
int has_eq(char *z, char *w, int *where);
double calculate(char *expr, int *ok);


#endif