Rev 8195 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
8135 | bpr | 1 | void parmprep(char *p,int ptype); |
2 | extern char *setpre; |
||
3 | void sp_asis(char *p, int ptype); |
||
4 | void sp_evalue(char *p, int ptype); |
||
5 | void sp_solve(char *p, int ptype); |
||
6 | void sp_diff(char *p, int ptype); |
||
7 | void sp_det(char *p, int ptype); |
||
8 | void sp_int(char *p, int ptype); |
||
9 | void sp_htmlmath(char *p, int ptype); |
||
10 | void sp_teximg(char *p, int ptype); |
||
11 | void sp_texmath(char *p, int ptype); |
||
12 | void sp_maxima(char *p, int ptype); |
||
13 | void sp_yacas(char *p, int ptype); |
||
14 | void sp_pari(char *p, int ptype); |
||
15 | void sp_simplify(char *p, int ptype); |
||
16 | void sp_slib(char *p, int ptype); |
||
17 | void sp_draw(char *p, int ptype); |
||
18 | void sp_canvasdraw(char *p, int ptype); |
||
19 | void sp_shuffle(char *p, int ptype); |
||
20 | void sp_positionof(char *p, int ptype); |
||
21 | void sp_random(char *p, int ptype); |
||
22 | void sp_pickone(char *p, int ptype); |
||
23 | |||
24 | void sp_item(char *p, int ptype); |
||
25 | void sp_items(char *p, int ptype); |
||
26 | void sp_randitem(char *p, int ptype); |
||
27 | void sp_column(char *p, int ptype); |
||
28 | void sp_row(char *p, int ptype); |
||
29 | void sp_rows(char *p, int ptype); |
||
30 | void sp_randrow(char *p, int ptype); |
||
31 | void sp_mathexp_cut(char *p, int ptype); |
||
32 | void sp_wims(char *p, int ptype); |
||
33 | |||
34 | extern int prepcnt; |
||
35 | extern FILE *outf; |
||
36 | extern char *primitive_dir; |
||
37 | enum {pt_int, pt_rat, pt_real, pt_complex, pt_func, pt_text, pt_matrix}; |
||
38 | extern struct specialfn { |
||
39 | char *name; |
||
40 | void (*processor)(char *p, int ptype); |
||
41 | } specialfn[]; |
||
42 | |||
43 | extern int specialfn_no; |
||
44 | extern int prepcnt; |
||
14873 | georgesk | 45 | |
46 | /** |
||
47 | * GK 2020-04-18 |
||
48 | * bare variables must not be declared in header files. So this is |
||
49 | * commented out and replaced by an extern clause. |
||
8195 | bpr | 50 | void (*sp_error)(char *s); |
14873 | georgesk | 51 | * the actual variable "sp_error" is defined in sp.c, line 19 |
52 | **/ |
||
53 | extern void (*sp_error)(char *s); |