small bug fix struct name
[midnight-commander.git] / edit / etags.h
blobc780eb044541ade8078d972d6183f1c29ce54e83
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 {
10 int filename_len;
11 unsigned char *fullpath;
12 unsigned char *filename;
13 unsigned char *short_define;
14 long line;
17 int etags_set_def_hash(char *tagfile, char *start_path, char *match_func, struct etags_hash_type *def_hash, int *num);
19 #endif