summaryrefslogtreecommitdiffstats
path: root/src/editor/etags.h
blob: 23813e959fddd3b3773ff4daa786fb39094fdf1a (plain)
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
#ifndef MC__EDIT_ETAGS_H
#define MC__EDIT_ETAGS_H 1

/*** typedefs(not structures) and defined constants **********************************************/

/*** enums ***************************************************************************************/

/*** structures declarations (and typedefs of structures)*****************************************/

typedef struct etags_hash_struct
{
    char *filename;
    char *fullpath;
    char *short_define;
    long line;
} etags_hash_t;

/*** global variables defined in .c file *********************************************************/

/*** declarations of public functions ************************************************************/

void edit_get_match_keyword_cmd (WEdit * edit);

/*** inline functions ****************************************************************************/

#endif /* MC__EDIT_ETAGS_H */