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