blob: 336e01e7585c68364aa9bab0e30983aa0c52a557 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* ex_cmds2.c */
2void 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));
Bram Moolenaar05159a02005-02-26 23:04:13 +000011int has_profiling __ARGS((int file, char_u *fname, int *fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012void dbg_breakpoint __ARGS((char_u *name, linenr_T lnum));
Bram Moolenaar05159a02005-02-26 23:04:13 +000013void profile_zero __ARGS((proftime_T *tm));
14void profile_start __ARGS((proftime_T *tm));
15void profile_end __ARGS((proftime_T *tm));
16void profile_sub __ARGS((proftime_T *tm, proftime_T *tm2));
17void profile_add __ARGS((proftime_T *tm, proftime_T *tm2));
Bram Moolenaar1056d982006-03-09 22:37:52 +000018void profile_self __ARGS((proftime_T *self, proftime_T *total, proftime_T *children));
Bram Moolenaar05159a02005-02-26 23:04:13 +000019void profile_get_wait __ARGS((proftime_T *tm));
20void profile_sub_wait __ARGS((proftime_T *tm, proftime_T *tma));
21int profile_equal __ARGS((proftime_T *tm1, proftime_T *tm2));
Bram Moolenaar73830342005-02-28 22:48:19 +000022int profile_cmp __ARGS((proftime_T *tm1, proftime_T *tm2));
Bram Moolenaar05159a02005-02-26 23:04:13 +000023char *profile_msg __ARGS((proftime_T *tm));
24void ex_profile __ARGS((exarg_T *eap));
25void profile_dump __ARGS((void));
26void script_prof_save __ARGS((proftime_T *tm));
27void script_prof_restore __ARGS((proftime_T *tm));
28void prof_inchar_enter __ARGS((void));
29void prof_inchar_exit __ARGS((void));
30int prof_def_func __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000031int autowrite __ARGS((buf_T *buf, int forceit));
32void autowrite_all __ARGS((void));
33int check_changed __ARGS((buf_T *buf, int checkaw, int mult_win, int forceit, int allbuf));
34void browse_save_fname __ARGS((buf_T *buf));
35void dialog_changed __ARGS((buf_T *buf, int checkall));
36int can_abandon __ARGS((buf_T *buf, int forceit));
37int check_changed_any __ARGS((int hidden));
38int check_fname __ARGS((void));
39int buf_write_all __ARGS((buf_T *buf, int forceit));
Bram Moolenaar86b68352004-12-27 21:59:20 +000040int get_arglist __ARGS((garray_T *gap, char_u *str));
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +000041int get_arglist_exp __ARGS((char_u *str, int *fcountp, char_u ***fnamesp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000042void set_arglist __ARGS((char_u *str));
43void check_arg_idx __ARGS((win_T *win));
44void ex_args __ARGS((exarg_T *eap));
45void ex_previous __ARGS((exarg_T *eap));
46void ex_rewind __ARGS((exarg_T *eap));
47void ex_last __ARGS((exarg_T *eap));
48void ex_argument __ARGS((exarg_T *eap));
49void do_argfile __ARGS((exarg_T *eap, int argn));
50void ex_next __ARGS((exarg_T *eap));
51void ex_argedit __ARGS((exarg_T *eap));
52void ex_argadd __ARGS((exarg_T *eap));
53void ex_argdelete __ARGS((exarg_T *eap));
54void ex_listdo __ARGS((exarg_T *eap));
55void ex_compiler __ARGS((exarg_T *eap));
56void ex_runtime __ARGS((exarg_T *eap));
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000057int source_runtime __ARGS((char_u *name, int all));
Bram Moolenaar54ee7752005-05-31 22:22:17 +000058int do_in_runtimepath __ARGS((char_u *name, int all, void (*callback)(char_u *fname, void *ck), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000059void ex_options __ARGS((exarg_T *eap));
60void ex_source __ARGS((exarg_T *eap));
61linenr_T *source_breakpoint __ARGS((void *cookie));
62int *source_dbg_tick __ARGS((void *cookie));
63int source_level __ARGS((void *cookie));
64int do_source __ARGS((char_u *fname, int check_other, int is_vimrc));
65void ex_scriptnames __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000066void scriptnames_slash_adjust __ARGS((void));
67char_u *get_scriptname __ARGS((scid_T id));
Bram Moolenaar51bab742005-07-08 22:31:03 +000068void free_scriptnames __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000069char *fgets_cr __ARGS((char *s, int n, FILE *stream));
70char_u *getsourceline __ARGS((int c, void *cookie, int indent));
Bram Moolenaar05159a02005-02-26 23:04:13 +000071void script_line_start __ARGS((void));
72void script_line_exec __ARGS((void));
73void script_line_end __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000074void ex_scriptencoding __ARGS((exarg_T *eap));
75void ex_finish __ARGS((exarg_T *eap));
76void do_finish __ARGS((exarg_T *eap, int reanimate));
77int source_finished __ARGS((char_u *(*getline)(int, void *, int), void *cookie));
78void ex_checktime __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000079char_u *get_mess_lang __ARGS((void));
80void set_lang_var __ARGS((void));
81void ex_language __ARGS((exarg_T *eap));
82char_u *get_lang_arg __ARGS((expand_T *xp, int idx));
83/* vim: set ft=c : */