1 #ifndef MC__EDIT_ETAGS_H
2 #define MC__EDIT_ETAGS_H 1
3
4 /*** typedefs(not structures) and defined constants **********************************************/
5
6 /*** enums ***************************************************************************************/
7
8 /*** structures declarations (and typedefs of structures)*****************************************/
9
10 typedef struct etags_hash_struct
11 {
12 char *filename;
13 char *fullpath;
14 char *short_define;
15 long line;
16 } etags_hash_t;
17
18 /*** global variables defined in .c file *********************************************************/
19
20 /*** declarations of public functions ************************************************************/
21
22 void edit_get_match_keyword_cmd (WEdit *edit);
23
24 /*** inline functions ****************************************************************************/
25
26 #endif