1 /* respond.h
2  */
3 /* This software is copyrighted as detailed in the LICENSE file. */
4 
5 
6 EXT char* savedest INIT(NULL);		/* value of %b */
7 EXT char* extractdest INIT(NULL);	/* value of %E */
8 EXT char* extractprog INIT(NULL);	/* value of %e */
9 EXT ART_POS savefrom INIT(0);		/* value of %B */
10 
11 #define SAVE_ABORT 0
12 #define SAVE_DONE 1
13 
14 /* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */
15 
16 void respond_init _((void));
17 int save_article _((void));
18 int view_article _((void));
19 int cancel_article _((void));
20 int supersede_article _((void));
21 void reply _((void));
22 void forward _((void));
23 void followup _((void));
24 int invoke _((char*,char*));
25