1 #ifndef MC_EDIT_ETAGS_H
2 #define MC_EDIT_ETAGS_H 1
4 #define MAX_DEFINITIONS 50
5 #define SHORT_DEF_LEN 30
6 #define LONG_DEF_LEN 40
7 #define LINE_DEF_LEN 16
9 struct etags_hash_type
{
11 unsigned char *fullpath
;
12 unsigned char *filename
;
13 unsigned char *short_define
;
17 int etags_set_def_hash(char *tagfile
, char *start_path
, char *match_func
, struct etags_hash_type
*def_hash
, int *num
);