2020-01-26 15:56:19 +01:00
|
|
|
/* vim9execute.c */
|
2020-08-12 21:34:49 +02:00
|
|
|
void to_string_error(vartype_T vartype);
|
2020-10-10 14:13:01 +02:00
|
|
|
void funcstack_check_refcount(funcstack_T *funcstack);
|
2020-05-16 21:20:12 +02:00
|
|
|
int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, partial_T *partial, typval_T *rettv);
|
2020-01-26 15:56:19 +01:00
|
|
|
void ex_disassemble(exarg_T *eap);
|
|
|
|
int tv2bool(typval_T *tv);
|
|
|
|
int check_not_string(typval_T *tv);
|
|
|
|
/* vim: set ft=c : */
|