1/* tag.c */ 2int do_tag(char_u *tag, int type, int count, int forceit, int verbose); 3void tag_freematch(void); 4void do_tags(exarg_T *eap); 5int find_tags(char_u *pat, int *num_matches, char_u ***matchesp, int flags, int mincount, char_u *buf_ffname); 6void free_tag_stuff(void); 7int get_tagfname(tagname_T *tnp, int first, char_u *buf); 8void tagname_free(tagname_T *tnp); 9void simplify_filename(char_u *filename); 10int expand_tags(int tagnames, char_u *pat, int *num_file, char_u ***file); 11int get_tags(list_T *list, char_u *pat, char_u *buf_fname); 12void get_tagstack(win_T *wp, dict_T *retdict); 13int set_tagstack(win_T *wp, dict_T *d, int action); 14/* vim: set ft=c : */ 15