blob: 54ccf12c30c788ac90e370348101ca26661cfb64 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* ex_cmds2.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002void do_debug(char_u *cmd);
3void ex_debug(exarg_T *eap);
4void dbg_check_breakpoint(exarg_T *eap);
5int dbg_check_skipped(exarg_T *eap);
6void ex_breakadd(exarg_T *eap);
7void ex_debuggreedy(exarg_T *eap);
8void ex_breakdel(exarg_T *eap);
9void ex_breaklist(exarg_T *eap);
10linenr_T dbg_find_breakpoint(int file, char_u *fname, linenr_T after);
11int has_profiling(int file, char_u *fname, int *fp);
12void dbg_breakpoint(char_u *name, linenr_T lnum);
13void profile_start(proftime_T *tm);
14void profile_end(proftime_T *tm);
15void profile_sub(proftime_T *tm, proftime_T *tm2);
16char *profile_msg(proftime_T *tm);
17void profile_setlimit(long msec, proftime_T *tm);
18int profile_passed_limit(proftime_T *tm);
19void profile_zero(proftime_T *tm);
20void profile_divide(proftime_T *tm, int count, proftime_T *tm2);
21void profile_add(proftime_T *tm, proftime_T *tm2);
22void profile_self(proftime_T *self, proftime_T *total, proftime_T *children);
23void profile_get_wait(proftime_T *tm);
24void profile_sub_wait(proftime_T *tm, proftime_T *tma);
25int profile_equal(proftime_T *tm1, proftime_T *tm2);
26int profile_cmp(const proftime_T *tm1, const proftime_T *tm2);
27void ex_profile(exarg_T *eap);
28char_u *get_profile_name(expand_T *xp, int idx);
29void set_context_in_profile_cmd(expand_T *xp, char_u *arg);
30void profile_dump(void);
31void script_prof_save(proftime_T *tm);
32void script_prof_restore(proftime_T *tm);
33void prof_inchar_enter(void);
34void prof_inchar_exit(void);
35int prof_def_func(void);
36int autowrite(buf_T *buf, int forceit);
37void autowrite_all(void);
38int check_changed(buf_T *buf, int flags);
39void browse_save_fname(buf_T *buf);
40void dialog_changed(buf_T *buf, int checkall);
41int can_abandon(buf_T *buf, int forceit);
42int check_changed_any(int hidden, int unload);
43int check_fname(void);
44int buf_write_all(buf_T *buf, int forceit);
45int get_arglist(garray_T *gap, char_u *str);
46int get_arglist_exp(char_u *str, int *fcountp, char_u ***fnamesp, int wig);
47void set_arglist(char_u *str);
48void check_arg_idx(win_T *win);
49void ex_args(exarg_T *eap);
50void ex_previous(exarg_T *eap);
51void ex_rewind(exarg_T *eap);
52void ex_last(exarg_T *eap);
53void ex_argument(exarg_T *eap);
54void do_argfile(exarg_T *eap, int argn);
55void ex_next(exarg_T *eap);
56void ex_argedit(exarg_T *eap);
57void ex_argadd(exarg_T *eap);
58void ex_argdelete(exarg_T *eap);
59void ex_listdo(exarg_T *eap);
60void ex_compiler(exarg_T *eap);
61void ex_runtime(exarg_T *eap);
62int source_runtime(char_u *name, int all);
63int do_in_runtimepath(char_u *name, int all, void (*callback)(char_u *fname, void *ck), void *cookie);
64void ex_options(exarg_T *eap);
65void ex_source(exarg_T *eap);
66linenr_T *source_breakpoint(void *cookie);
67int *source_dbg_tick(void *cookie);
68int source_level(void *cookie);
69int do_source(char_u *fname, int check_other, int is_vimrc);
70void ex_scriptnames(exarg_T *eap);
71void scriptnames_slash_adjust(void);
72char_u *get_scriptname(scid_T id);
73void free_scriptnames(void);
74char *fgets_cr(char *s, int n, FILE *stream);
75char_u *getsourceline(int c, void *cookie, int indent);
76void script_line_start(void);
77void script_line_exec(void);
78void script_line_end(void);
79void ex_scriptencoding(exarg_T *eap);
80void ex_finish(exarg_T *eap);
81void do_finish(exarg_T *eap, int reanimate);
82int source_finished(char_u *(*fgetline)(int, void *, int), void *cookie);
83void ex_checktime(exarg_T *eap);
84char_u *get_mess_lang(void);
85void set_lang_var(void);
86void ex_language(exarg_T *eap);
87void free_locales(void);
88char_u *get_lang_arg(expand_T *xp, int idx);
89char_u *get_locales(expand_T *xp, int idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +000090/* vim: set ft=c : */