mirror of
https://github.com/vim/vim.git
synced 2026-08-18 06:57:53 +02:00
67 lines
3.4 KiB
Prolog
67 lines
3.4 KiB
Prolog
/* eval.c */
|
|
void eval_init __ARGS((void));
|
|
char_u *func_name __ARGS((void *cookie));
|
|
linenr_T *func_breakpoint __ARGS((void *cookie));
|
|
int *func_dbg_tick __ARGS((void *cookie));
|
|
int func_level __ARGS((void *cookie));
|
|
int current_func_returned __ARGS((void));
|
|
void set_internal_string_var __ARGS((char_u *name, char_u *value));
|
|
int eval_charconvert __ARGS((char_u *enc_from, char_u *enc_to, char_u *fname_from, char_u *fname_to));
|
|
int eval_printexpr __ARGS((char_u *fname, char_u *args));
|
|
void eval_diff __ARGS((char_u *origfile, char_u *newfile, char_u *outfile));
|
|
void eval_patch __ARGS((char_u *origfile, char_u *difffile, char_u *outfile));
|
|
int eval_to_bool __ARGS((char_u *arg, int *error, char_u **nextcmd, int skip));
|
|
char_u *eval_to_string_skip __ARGS((char_u *arg, char_u **nextcmd, int skip));
|
|
int skip_expr __ARGS((char_u **pp));
|
|
char_u *eval_to_string __ARGS((char_u *arg, char_u **nextcmd));
|
|
char_u *eval_to_string_safe __ARGS((char_u *arg, char_u **nextcmd));
|
|
int eval_to_number __ARGS((char_u *expr));
|
|
char_u *call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe));
|
|
void *save_funccal __ARGS((void));
|
|
void restore_funccal __ARGS((void *fc));
|
|
int eval_foldexpr __ARGS((char_u *arg, int *cp));
|
|
void ex_let __ARGS((exarg_T *eap));
|
|
void *eval_for_line __ARGS((char_u *arg, int *errp, char_u **nextcmdp, int skip));
|
|
int next_for_item __ARGS((void *fi_void, char_u *arg));
|
|
void free_for_info __ARGS((void *fi_void));
|
|
void set_context_for_expression __ARGS((expand_T *xp, char_u *arg, cmdidx_T cmdidx));
|
|
void ex_call __ARGS((exarg_T *eap));
|
|
void ex_unlet __ARGS((exarg_T *eap));
|
|
int do_unlet __ARGS((char_u *name));
|
|
void del_menutrans_vars __ARGS((void));
|
|
char_u *get_user_var_name __ARGS((expand_T *xp, int idx));
|
|
char_u *get_function_name __ARGS((expand_T *xp, int idx));
|
|
char_u *get_expr_name __ARGS((expand_T *xp, int idx));
|
|
void set_vim_var_nr __ARGS((int idx, long val));
|
|
long get_vim_var_nr __ARGS((int idx));
|
|
void set_vcount __ARGS((long count, long count1));
|
|
void set_vim_var_string __ARGS((int idx, char_u *val, int len));
|
|
void set_reg_var __ARGS((int c));
|
|
char_u *v_exception __ARGS((char_u *oldval));
|
|
char_u *v_throwpoint __ARGS((char_u *oldval));
|
|
char_u *set_cmdarg __ARGS((exarg_T *eap, char_u *oldarg));
|
|
char_u *get_var_value __ARGS((char_u *name));
|
|
void new_script_vars __ARGS((scid_T id));
|
|
void vars_init __ARGS((hashtab_T *ht));
|
|
void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var));
|
|
void vars_clear __ARGS((hashtab_T *ht));
|
|
void ex_echo __ARGS((exarg_T *eap));
|
|
void ex_echohl __ARGS((exarg_T *eap));
|
|
void ex_execute __ARGS((exarg_T *eap));
|
|
void ex_function __ARGS((exarg_T *eap));
|
|
char_u *get_user_func_name __ARGS((expand_T *xp, int idx));
|
|
void ex_delfunction __ARGS((exarg_T *eap));
|
|
void ex_return __ARGS((exarg_T *eap));
|
|
int do_return __ARGS((exarg_T *eap, int reanimate, int is_cmd, void *rettv));
|
|
void discard_pending_return __ARGS((void *rettv));
|
|
char_u *get_return_cmd __ARGS((void *rettv));
|
|
char_u *get_func_line __ARGS((int c, void *cookie, int indent));
|
|
int func_has_ended __ARGS((void *cookie));
|
|
int func_has_abort __ARGS((void *cookie));
|
|
int read_viminfo_varlist __ARGS((vir_T *virp, int writing));
|
|
void write_viminfo_varlist __ARGS((FILE *fp));
|
|
int store_session_globals __ARGS((FILE *fd));
|
|
int modify_fname __ARGS((char_u *src, int *usedlen, char_u **fnamep, char_u **bufp, int *fnamelen));
|
|
char_u *do_string_sub __ARGS((char_u *str, char_u *pat, char_u *sub, char_u *flags));
|
|
/* vim: set ft=c : */
|