File: tagelvis.h

package info (click to toggle)
elvis 2.1.4-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 4,528 kB
  • ctags: 6,177
  • sloc: ansic: 57,188; sh: 1,026; makefile: 299
file content (27 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 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

#ifdef FEATURE_COMPLETE
CHAR *tagcomplete P_((WINDOW win, MARK m));
#endif

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

END_EXTERNC