Rev 8871 | 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_PARAM 1024 |
||
7 | |||
8 | extern int inlen, primserial, prepcnt; |
||
8195 | bpr | 9 | void msg_error(char *s); |
8871 | bpr | 10 | void substdoc(char *p); |
8135 | bpr | 11 | void bailout(int i1, int i2, char *msg); |
12 | char *substit(char *p); |
||
13 | int _scmp(const void *p1, const void *p2); |
||
14 | char *find_tag_end(char *p); |
||
15 | |||
16 | /* from compare.c */ |
||
17 | int _check_compare(char *p, int lvl); |
||
18 | int check_compare(char *p); |
||
19 | |||
20 | void parmprep(char *p,int ptype); |
||
21 | void def(char *p); |
||
22 | |||
23 | /* from doc.c */ |
||
24 | extern char primbuf[MAX_LINELEN+1]; |
||
25 | extern int primcnt; |
||
26 | extern char *primitive[256]; |
||
27 | char *doccheck(char *p); |
||
28 | |||
29 | #include "sp.h" |