comparison src/proto/eval.pro @ 374:575dacb554d8 v7.0096

updated for version 7.0096
author vimboss
date Tue, 28 Jun 2005 23:32:02 +0000
parents 3a21825ad207
children 0f6afaf1b8d1
comparison
equal deleted inserted replaced
373:a0e3c8a6d200 374:575dacb554d8
18 char_u *eval_to_string_skip __ARGS((char_u *arg, char_u **nextcmd, int skip)); 18 char_u *eval_to_string_skip __ARGS((char_u *arg, char_u **nextcmd, int skip));
19 int skip_expr __ARGS((char_u **pp)); 19 int skip_expr __ARGS((char_u **pp));
20 char_u *eval_to_string __ARGS((char_u *arg, char_u **nextcmd)); 20 char_u *eval_to_string __ARGS((char_u *arg, char_u **nextcmd));
21 char_u *eval_to_string_safe __ARGS((char_u *arg, char_u **nextcmd)); 21 char_u *eval_to_string_safe __ARGS((char_u *arg, char_u **nextcmd));
22 int eval_to_number __ARGS((char_u *expr)); 22 int eval_to_number __ARGS((char_u *expr));
23 list_T *eval_spell_expr __ARGS((char_u *badword, char_u *expr));
24 int get_spellword __ARGS((list_T *list, char_u **pp));
23 char_u *call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe)); 25 char_u *call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe));
24 void *save_funccal __ARGS((void)); 26 void *save_funccal __ARGS((void));
25 void restore_funccal __ARGS((void *vfc)); 27 void restore_funccal __ARGS((void *vfc));
26 void prof_child_enter __ARGS((proftime_T *tm)); 28 void prof_child_enter __ARGS((proftime_T *tm));
27 void prof_child_exit __ARGS((proftime_T *tm)); 29 void prof_child_exit __ARGS((proftime_T *tm));
35 void ex_unlet __ARGS((exarg_T *eap)); 37 void ex_unlet __ARGS((exarg_T *eap));
36 void ex_lockvar __ARGS((exarg_T *eap)); 38 void ex_lockvar __ARGS((exarg_T *eap));
37 int do_unlet __ARGS((char_u *name, int forceit)); 39 int do_unlet __ARGS((char_u *name, int forceit));
38 void del_menutrans_vars __ARGS((void)); 40 void del_menutrans_vars __ARGS((void));
39 char_u *get_user_var_name __ARGS((expand_T *xp, int idx)); 41 char_u *get_user_var_name __ARGS((expand_T *xp, int idx));
42 void list_unref __ARGS((list_T *l));
40 int list_append_dict __ARGS((list_T *list, dict_T *dict)); 43 int list_append_dict __ARGS((list_T *list, dict_T *dict));
41 int garbage_collect __ARGS((void)); 44 int garbage_collect __ARGS((void));
42 dict_T *dict_alloc __ARGS((void)); 45 dict_T *dict_alloc __ARGS((void));
43 int dict_add_nr_str __ARGS((dict_T *d, char *key, long nr, char_u *str)); 46 int dict_add_nr_str __ARGS((dict_T *d, char *key, long nr, char_u *str));
44 char_u *get_dict_string __ARGS((dict_T *d, char_u *key)); 47 char_u *get_dict_string __ARGS((dict_T *d, char_u *key));