blob: 523565942dae6e50e532c2c156f48c1d3582f5f6 [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);
Bram Moolenaar66b51422019-08-18 21:44:12 +020011void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options);
12void f_getcompletion(typval_T *argvars, typval_T *rettv);
13/* vim: set ft=c : */