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_debug(char_u *cmd);
7void ex_debug(exarg_T *eap);
8void dbg_check_breakpoint(exarg_T *eap);
9_Bool dbg_check_skipped(exarg_T *eap);
10void ex_breakadd(exarg_T *eap);
11void ex_debuggreedy(exarg_T *eap);
12void ex_breakdel(exarg_T *eap);
13void ex_breaklist(exarg_T *eap);
14linenr_T dbg_find_breakpoint(_Bool file, char_u *fname, linenr_T after );
15_Bool has_profiling(_Bool file, char_u *fname, _Bool *fp);
16void dbg_breakpoint(char_u *name, linenr_T lnum);
17void ex_profile(exarg_T *eap);
18void ex_python(exarg_T *eap);
19void ex_pyfile(exarg_T *eap);
20void ex_pydo(exarg_T *eap);
21void ex_ruby(exarg_T *eap);
22void ex_rubyfile(exarg_T *eap);
23void ex_rubydo(exarg_T *eap);
24void ex_python3(exarg_T *eap);
25void ex_py3file(exarg_T *eap);
26void ex_pydo3(exarg_T *eap);
27char_u *get_profile_name(expand_T *xp, int idx);
28void set_context_in_profile_cmd(expand_T *xp, const char *arg);
29void profile_dump(void);
30void script_prof_save(proftime_T *tm );
31void script_prof_restore(proftime_T *tm);
32void prof_inchar_enter(void);
33void prof_inchar_exit(void);
34_Bool prof_def_func(void);
35int autowrite(buf_T *buf, int forceit);
36void autowrite_all(void);
37_Bool check_changed(buf_T *buf, int flags);
38void dialog_changed(buf_T *buf, _Bool checkall);
39_Bool dialog_close_terminal(buf_T *buf);
40_Bool can_abandon(buf_T *buf, int forceit);
41_Bool check_changed_any(_Bool hidden, _Bool unload);
42int check_fname(void);
43int buf_write_all(buf_T *buf, int forceit);
44int get_arglist_exp(char_u *str, int *fcountp, char_u ***fnamesp, _Bool wig);
45void check_arg_idx(win_T *win);
46void ex_args(exarg_T *eap);
47void ex_previous(exarg_T *eap);
48void ex_rewind(exarg_T *eap);
49void ex_last(exarg_T *eap);
50void ex_argument(exarg_T *eap);
51void do_argfile(exarg_T *eap, int argn);
52void ex_next(exarg_T *eap);
53void ex_argedit(exarg_T *eap);
54void ex_argadd(exarg_T *eap);
55void ex_argdelete(exarg_T *eap);
56void ex_listdo(exarg_T *eap);
57char_u *get_arglist_name(expand_T *xp FUNC_ATTR_UNUSED, int idx);
58void ex_compiler(exarg_T *eap);
59void ex_runtime(exarg_T *eap);
60int do_in_path(char_u *path, char_u *name, int flags, DoInRuntimepathCB callback, void *cookie);
61int do_in_path_and_pp(char_u *path, char_u *name, int flags, DoInRuntimepathCB callback, void *cookie);
62int do_in_runtimepath(char_u *name, int flags, DoInRuntimepathCB callback, void *cookie);
63int source_runtime(char_u *name, int flags);
64int source_in_path(char_u *path, char_u *name, int flags);
65void add_pack_start_dirs(void);
66void load_start_packages(void);
67void ex_packloadall(exarg_T *eap);
68void ex_packadd(exarg_T *eap);
69void ex_options(exarg_T *eap);
70void init_pyxversion(void);
71void ex_pyxfile(exarg_T *eap);
72void ex_pyx(exarg_T *eap);
73void ex_pyxdo(exarg_T *eap);
74void ex_source(exarg_T *eap);
75linenr_T *source_breakpoint(void *cookie);
76int *source_dbg_tick(void *cookie);
77int source_level(void *cookie);
78int do_source(char_u *fname, int check_other, int is_vimrc);
79void ex_scriptnames(exarg_T *eap);
80char_u *get_scriptname(LastSet last_set, _Bool *should_free);
81char_u *getsourceline(int c, void *cookie, int indent);
82void script_line_start(void);
83void script_line_exec(void);
84void script_line_end(void);
85void ex_scriptencoding(exarg_T *eap);
86void ex_finish(exarg_T *eap);
87void do_finish(exarg_T *eap, int reanimate);
88_Bool source_finished(LineGetter fgetline, void *cookie);
89void ex_checktime(exarg_T *eap);
90char *get_mess_lang(void);
91void set_lang_var(void);
92void ex_language(exarg_T *eap);
93char_u *get_lang_arg(expand_T *xp, int idx);
94char_u *get_locales(expand_T *xp, int idx);
95void ex_drop(exarg_T *eap);
96#include "nvim/func_attr.h"
97