File: tagelvis.h

package info (click to toggle)
elvis 2.1i-3
  • links: PTS
  • area: non-free
  • in suites: hamm
  • size: 4,120 kB
  • ctags: 5,838
  • sloc: ansic: 53,854; sh: 811; makefile: 263
file content (22 lines) | stat: -rw-r--r-- 497 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* tagelvis.h */

extern BOOLEAN	tenewtag;

BEGIN_EXTERNC

#ifdef FEATURE_SHOWTAG
typedef struct tedef_s
{
	MARK	where;		/* where a tag is defined */
	CHAR	*label;		/* tag name, and maybe other info */
} TEDEF;
extern void tebuilddef P_((BUFFER buf));
extern void tefreedef P_((BUFFER buf));
extern CHAR *telabel P_((MARK cursor));
#endif

extern TAG *tetag P_((CHAR *select));
extern BUFFER tebrowse P_((BOOLEAN all, CHAR *select));
extern void tepush P_((WINDOW win, CHAR *label));

END_EXTERNC