1/* help.c */ 2void ex_help(exarg_T *eap); 3void ex_helpclose(exarg_T *eap); 4char_u *check_help_lang(char_u *arg); 5int help_heuristic(char_u *matched_string, int offset, int wrong_case); 6int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang); 7void cleanup_help_tags(int num_file, char_u **file); 8void prepare_help_buffer(void); 9void fix_help_buffer(void); 10void ex_exusage(exarg_T *eap); 11void ex_viusage(exarg_T *eap); 12void ex_helptags(exarg_T *eap); 13/* vim: set ft=c : */ 14 15