blob: f2cea9ff9c5ea2421b3afb8c76869c7470f67802 [file] [log] [blame]
Bram Moolenaar66b51422019-08-18 21:44:12 +02001/* cmdexpand.c */
2int nextwild(expand_T *xp, int type, int options, int escape);
3char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode);
4void ExpandInit(expand_T *xp);
5void ExpandCleanup(expand_T *xp);
6int showmatches(expand_T *xp, int wildmenu);
7char_u *sm_gettail(char_u *s);
8char_u *addstar(char_u *fname, int len, int context);
9void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline);
10int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches);
11int ExpandGeneric(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file, char_u *((*func)(expand_T *, int)), int escaped);
12void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options);
13void f_getcompletion(typval_T *argvars, typval_T *rettv);
14/* vim: set ft=c : */