Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 1 | /* findfile.c */ |
| 2 | void *vim_findfile_init(char_u *path, char_u *filename, char_u *stopdirs, int level, int free_visited, int find_what, void *search_ctx_arg, int tagfile, char_u *rel_fname); |
| 3 | char_u *vim_findfile_stopdir(char_u *buf); |
| 4 | void vim_findfile_cleanup(void *ctx); |
| 5 | char_u *vim_findfile(void *search_ctx_arg); |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 6 | char_u *find_file_in_path(char_u *ptr, int len, int options, int first, char_u *rel_fname); |
| 7 | void free_findfile(void); |
| 8 | char_u *find_directory_in_path(char_u *ptr, int len, int options, char_u *rel_fname); |
| 9 | char_u *find_file_in_path_option(char_u *ptr, int len, int options, int first, char_u *path_option, int find_what, char_u *rel_fname, char_u *suffixes); |
| 10 | char_u *grab_file_name(long count, linenr_T *file_lnum); |
| 11 | char_u *file_name_at_cursor(int options, long count, linenr_T *file_lnum); |
| 12 | char_u *file_name_in_line(char_u *line, int col, int options, long count, char_u *rel_fname, linenr_T *file_lnum); |
| 13 | char_u *find_file_name_in_path(char_u *ptr, int len, int options, long count, char_u *rel_fname); |
| 14 | int vim_ispathlistsep(int c); |
| 15 | void uniquefy_paths(garray_T *gap, char_u *pattern); |
| 16 | int expand_in_path(garray_T *gap, char_u *pattern, int flags); |
Bram Moolenaar | b4a6020 | 2019-03-31 19:40:07 +0200 | [diff] [blame] | 17 | void simplify_filename(char_u *filename); |
Bram Moolenaar | 5fd0f50 | 2019-02-13 23:13:28 +0100 | [diff] [blame] | 18 | /* vim: set ft=c : */ |