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