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 | #define elsechar '\001' |
2 | #define endifchar '\002' |
||
3 | #define nextchar '\003' |
||
4 | #define whilechar '\004' |
||
5 | #define MAX_PARM 10 |
||
6 | #define MAX_PROMPTLEN 40 |
||
7 | #define MAX_PARAM 1024 |
||
8 | |||
9 | extern int inlen, primserial, prepcnt; |
||
8195 | bpr | 10 | void msg_error(char *s); |
8871 | bpr | 11 | void substdoc(char *p); |
8135 | bpr | 12 | void bailout(int i1, int i2, char *msg); |
13 | char *substit(char *p); |
||
14 | int _scmp(const void *p1, const void *p2); |
||
15 | char *find_tag_end(char *p); |
||
16 | |||
17 | /* from compare.c */ |
||
18 | int _check_compare(char *p, int lvl); |
||
19 | int check_compare(char *p); |
||
20 | |||
21 | void parmprep(char *p,int ptype); |
||
22 | void def(char *p); |
||
23 | |||
24 | /* from doc.c */ |
||
25 | extern char primbuf[MAX_LINELEN+1]; |
||
26 | extern int primcnt; |
||
27 | extern char *primitive[256]; |
||
28 | char *doccheck(char *p); |
||
29 | |||
30 | #include "sp.h" |