comparison src/proto/misc1.pro @ 15814:99ebf78686a9 v8.1.0914

patch 8.1.0914: code related to findfile() is spread out commit https://github.com/vim/vim/commit/5fd0f5052f9a312bb4cfe7b4176b1211d45127ee Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 13 23:13:28 2019 +0100 patch 8.1.0914: code related to findfile() is spread out Problem: Code related to findfile() is spread out. Solution: Put findfile() related code into a new source file. (Yegappan Lakshmanan, closes #3934)
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 Feb 2019 23:15:05 +0100
parents 2d941023bd2f
children 30de89c1d090
comparison
equal deleted inserted replaced
15813:ad21b64216aa 15814:99ebf78686a9
72 char_u *gettail_sep(char_u *fname); 72 char_u *gettail_sep(char_u *fname);
73 char_u *getnextcomp(char_u *fname); 73 char_u *getnextcomp(char_u *fname);
74 char_u *get_past_head(char_u *path); 74 char_u *get_past_head(char_u *path);
75 int vim_ispathsep(int c); 75 int vim_ispathsep(int c);
76 int vim_ispathsep_nocolon(int c); 76 int vim_ispathsep_nocolon(int c);
77 int vim_ispathlistsep(int c);
78 void shorten_dir(char_u *str); 77 void shorten_dir(char_u *str);
79 int dir_of_file_exists(char_u *fname); 78 int dir_of_file_exists(char_u *fname);
80 int vim_fnamecmp(char_u *x, char_u *y); 79 int vim_fnamecmp(char_u *x, char_u *y);
81 int vim_fnamencmp(char_u *x, char_u *y, size_t len); 80 int vim_fnamencmp(char_u *x, char_u *y, size_t len);
82 char_u *concat_fnames(char_u *fname1, char_u *fname2, int sep); 81 char_u *concat_fnames(char_u *fname1, char_u *fname2, int sep);
97 void addfile(garray_T *gap, char_u *f, int flags); 96 void addfile(garray_T *gap, char_u *f, int flags);
98 char_u *get_cmd_output(char_u *cmd, char_u *infile, int flags, int *ret_len); 97 char_u *get_cmd_output(char_u *cmd, char_u *infile, int flags, int *ret_len);
99 void FreeWild(int count, char_u **files); 98 void FreeWild(int count, char_u **files);
100 int goto_im(void); 99 int goto_im(void);
101 char_u *get_isolated_shell_name(void); 100 char_u *get_isolated_shell_name(void);
101 int path_is_url(char_u *p);
102 int path_with_url(char_u *fname);
103 int vim_isAbsName(char_u *name);
104 int vim_FullName(char_u *fname, char_u *buf, int len, int force);
102 /* vim: set ft=c : */ 105 /* vim: set ft=c : */