Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* eval.c */ |
| 2 | char_u *func_name __ARGS((void *cookie)); |
| 3 | linenr_T *func_breakpoint __ARGS((void *cookie)); |
| 4 | int *func_dbg_tick __ARGS((void *cookie)); |
| 5 | int func_level __ARGS((void *cookie)); |
| 6 | int current_func_returned __ARGS((void)); |
| 7 | void set_internal_string_var __ARGS((char_u *name, char_u *value)); |
| 8 | int eval_charconvert __ARGS((char_u *enc_from, char_u *enc_to, char_u *fname_from, char_u *fname_to)); |
| 9 | int eval_printexpr __ARGS((char_u *fname, char_u *args)); |
| 10 | void eval_diff __ARGS((char_u *origfile, char_u *newfile, char_u *outfile)); |
| 11 | void eval_patch __ARGS((char_u *origfile, char_u *difffile, char_u *outfile)); |
| 12 | int eval_to_bool __ARGS((char_u *arg, int *error, char_u **nextcmd, int skip)); |
| 13 | char_u *eval_to_string_skip __ARGS((char_u *arg, char_u **nextcmd, int skip)); |
| 14 | char_u *eval_to_string __ARGS((char_u *arg, char_u **nextcmd)); |
| 15 | char_u *eval_to_string_safe __ARGS((char_u *arg, char_u **nextcmd)); |
| 16 | int eval_to_number __ARGS((char_u *expr)); |
| 17 | char_u *call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe)); |
| 18 | void *save_funccal __ARGS((void)); |
| 19 | void restore_funccal __ARGS((void *fc)); |
| 20 | int eval_foldexpr __ARGS((char_u *arg, int *cp)); |
| 21 | void ex_let __ARGS((exarg_T *eap)); |
| 22 | void set_context_for_expression __ARGS((expand_T *xp, char_u *arg, cmdidx_T cmdidx)); |
| 23 | void ex_call __ARGS((exarg_T *eap)); |
| 24 | void ex_unlet __ARGS((exarg_T *eap)); |
| 25 | int do_unlet __ARGS((char_u *name)); |
| 26 | void del_menutrans_vars __ARGS((void)); |
| 27 | char_u *get_user_var_name __ARGS((expand_T *xp, int idx)); |
| 28 | char_u *get_function_name __ARGS((expand_T *xp, int idx)); |
| 29 | char_u *get_expr_name __ARGS((expand_T *xp, int idx)); |
| 30 | void set_vim_var_nr __ARGS((int idx, long val)); |
| 31 | long get_vim_var_nr __ARGS((int idx)); |
| 32 | void set_vcount __ARGS((long count, long count1)); |
| 33 | void set_vim_var_string __ARGS((int idx, char_u *val, int len)); |
| 34 | void set_reg_var __ARGS((int c)); |
| 35 | char_u *v_exception __ARGS((char_u *oldval)); |
| 36 | char_u *v_throwpoint __ARGS((char_u *oldval)); |
| 37 | char_u *set_cmdarg __ARGS((exarg_T *eap, char_u *oldarg)); |
| 38 | char_u *get_var_value __ARGS((char_u *name)); |
| 39 | void new_script_vars __ARGS((scid_T id)); |
| 40 | void var_init __ARGS((garray_T *gap)); |
| 41 | void var_clear __ARGS((garray_T *gap)); |
| 42 | void ex_echo __ARGS((exarg_T *eap)); |
| 43 | void ex_echohl __ARGS((exarg_T *eap)); |
| 44 | void ex_execute __ARGS((exarg_T *eap)); |
| 45 | void ex_function __ARGS((exarg_T *eap)); |
| 46 | char_u *get_user_func_name __ARGS((expand_T *xp, int idx)); |
| 47 | void ex_delfunction __ARGS((exarg_T *eap)); |
| 48 | void ex_return __ARGS((exarg_T *eap)); |
| 49 | int do_return __ARGS((exarg_T *eap, int reanimate, int is_cmd, void *value)); |
| 50 | void discard_pending_return __ARGS((void *retvar)); |
| 51 | char_u *get_return_cmd __ARGS((void *retvar)); |
| 52 | char_u *get_func_line __ARGS((int c, void *cookie, int indent)); |
| 53 | int func_has_ended __ARGS((void *cookie)); |
| 54 | int func_has_abort __ARGS((void *cookie)); |
| 55 | int read_viminfo_varlist __ARGS((vir_T *virp, int writing)); |
| 56 | void write_viminfo_varlist __ARGS((FILE *fp)); |
| 57 | int store_session_globals __ARGS((FILE *fd)); |
| 58 | int modify_fname __ARGS((char_u *src, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen)); |
| 59 | char_u *do_string_sub __ARGS((char_u *str, char_u *pat, char_u *sub, char_u *flags)); |
| 60 | /* vim: set ft=c : */ |