view src/proto/help.pro @ 32254:1f29252237de v9.0.1458

patch 9.0.1458: buffer overflow when expanding long file name Commit: https://github.com/vim/vim/commit/a77670726e3706973adffc2b118f4576e1f58ea0 Author: Yee Cheng Chin <ychin.git@gmail.com> Date: Sun Apr 16 20:13:12 2023 +0100 patch 9.0.1458: buffer overflow when expanding long file name Problem: Buffer overflow when expanding long file name. Solution: Use a larger buffer and avoid overflowing it. (Yee Cheng Chin, closes #12201)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Apr 2023 21:15:03 +0200
parents f103da6ba95f
children
line wrap: on
line source

/* help.c */
void ex_help(exarg_T *eap);
void ex_helpclose(exarg_T *eap);
char_u *check_help_lang(char_u *arg);
int help_heuristic(char_u *matched_string, int offset, int wrong_case);
int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang);
void cleanup_help_tags(int num_file, char_u **file);
void prepare_help_buffer(void);
void fix_help_buffer(void);
void ex_exusage(exarg_T *eap);
void ex_viusage(exarg_T *eap);
void ex_helptags(exarg_T *eap);
/* vim: set ft=c : */