1#ifndef DEFINE_FUNC_ATTRIBUTES
2# define DEFINE_FUNC_ATTRIBUTES
3#endif
4#include "nvim/func_attr.h"
5#undef DEFINE_FUNC_ATTRIBUTES
6void do_exmode(int improved);
7int do_cmdline_cmd(const char *cmd);
8int do_cmdline(char_u *cmdline, LineGetter fgetline, void *cookie, int flags);
9int getline_equal(LineGetter fgetline, void *cookie, LineGetter func);
10void *getline_cookie(LineGetter fgetline, void *cookie );
11int checkforcmd(char_u **pp, char *cmd, int len );
12int modifier_len(char_u *cmd);
13int cmd_exists(const char *const name);
14const char *set_one_cmd_context(expand_T *xp, const char *buff );
15char_u *skip_range(const char_u *cmd, int *ctx );
16void ex_ni(exarg_T *eap);
17int expand_filename(exarg_T *eap, char_u **cmdlinep, char_u **errormsgp);
18void separate_nextcmd(exarg_T *eap);
19int ends_excmd(int c) FUNC_ATTR_CONST;
20char_u *find_nextcmd(const char_u *p);
21char_u *check_nextcmd(char_u *p);
22char_u *get_command_name(expand_T *xp, int idx);
23void ex_comclear(exarg_T *eap);
24void uc_clear(garray_T *gap);
25char_u *get_user_cmd_addr_type(expand_T *xp, int idx);
26char_u *get_user_commands(expand_T *xp, int idx);
27char_u *get_user_cmd_flags(expand_T *xp, int idx);
28char_u *get_user_cmd_nargs(expand_T *xp, int idx);
29char_u *get_user_cmd_complete(expand_T *xp, int idx);
30int parse_addr_type_arg(char_u *value, int vallen, uint32_t *argt, int *addr_type_arg);
31int parse_compl_arg(const char_u *value, int vallen, int *complp, uint32_t *argt, char_u **compl_arg);
32int cmdcomplete_str_to_type(char_u *complete_str);
33void not_exiting(void);
34void ex_win_close(int forceit, win_T *win, tabpage_T *tp );
35void tabpage_close(int forceit);
36void tabpage_close_other(tabpage_T *tp, int forceit);
37void ex_all(exarg_T *eap);
38void alist_clear(alist_T *al);
39void alist_init(alist_T *al);
40void alist_unlink(alist_T *al);
41void alist_new(void);
42void alist_set(alist_T *al, int count, char_u **files, int use_curbuf, int *fnum_list, int fnum_len);
43void alist_add(alist_T *al, char_u *fname, int set_fnum );
44void ex_splitview(exarg_T *eap);
45void tabpage_new(void);
46void do_exedit(exarg_T *eap, win_T *old_curwin );
47void post_chdir(CdScope scope, _Bool trigger_dirchanged);
48void ex_cd(exarg_T *eap);
49void do_sleep(long msec);
50void ex_may_print(exarg_T *eap);
51int vim_mkdir_emsg(const char *const name, const int prot) FUNC_ATTR_NONNULL_ALL;
52FILE *open_exfile(char_u *fname, int forceit, char *mode );
53void update_topline_cursor(void);
54void exec_normal_cmd(char_u *cmd, int remap, _Bool silent);
55void exec_normal(_Bool was_typed);
56ssize_t find_cmdline_var(const char_u *src, size_t *usedlen) FUNC_ATTR_NONNULL_ALL;
57char_u *eval_vars(char_u *src, char_u *srcstart, size_t *usedlen, linenr_T *lnump, char_u **errormsg, int *escaped );
58char_u *expand_sfile(char_u *arg);
59int put_eol(FILE *fd);
60int put_line(FILE *fd, char *s);
61void dialog_msg(char_u *buff, char *format, char_u *fname);
62char_u *get_behave_arg(expand_T *xp, int idx);
63char_u *get_messages_arg(expand_T *xp FUNC_ATTR_UNUSED, int idx);
64char_u *get_mapclear_arg(expand_T *xp FUNC_ATTR_UNUSED, int idx);
65void filetype_maybe_enable(void);
66void set_no_hlsearch(_Bool flag);
67_Bool cmd_can_preview(char_u *cmd);
68Dictionary commands_array(buf_T *buf);
69#include "nvim/func_attr.h"
70