comparison src/proto/list.pro @ 17530:ef23ec1eee54 v8.1.1763

patch 8.1.1763: evalfunc.c is still too big commit https://github.com/vim/vim/commit/9f9fe37f6750f342255a51f158a7bb372c827f7f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 27 23:12:12 2019 +0200 patch 8.1.1763: evalfunc.c is still too big Problem: Evalfunc.c is still too big. Solution: Move dict and list functions to a better place.
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Jul 2019 23:15:05 +0200
parents 3a99b2e6d136
children 0f7ae8010787
comparison
equal deleted inserted replaced
17529:4bd2e3339ba3 17530:ef23ec1eee54
32 int list_concat(list_T *l1, list_T *l2, typval_T *tv); 32 int list_concat(list_T *l1, list_T *l2, typval_T *tv);
33 list_T *list_copy(list_T *orig, int deep, int copyID); 33 list_T *list_copy(list_T *orig, int deep, int copyID);
34 void vimlist_remove(list_T *l, listitem_T *item, listitem_T *item2); 34 void vimlist_remove(list_T *l, listitem_T *item, listitem_T *item2);
35 char_u *list2string(typval_T *tv, int copyID, int restore_copyID); 35 char_u *list2string(typval_T *tv, int copyID, int restore_copyID);
36 int list_join(garray_T *gap, list_T *l, char_u *sep, int echo_style, int restore_copyID, int copyID); 36 int list_join(garray_T *gap, list_T *l, char_u *sep, int echo_style, int restore_copyID, int copyID);
37 void f_join(typval_T *argvars, typval_T *rettv);
37 int get_list_tv(char_u **arg, typval_T *rettv, int evaluate); 38 int get_list_tv(char_u **arg, typval_T *rettv, int evaluate);
38 int write_list(FILE *fd, list_T *list, int binary); 39 int write_list(FILE *fd, list_T *list, int binary);
39 void init_static_list(staticList10_T *sl); 40 void init_static_list(staticList10_T *sl);
41 void f_list2str(typval_T *argvars, typval_T *rettv);
42 void list_remove(typval_T *argvars, typval_T *rettv, char_u *arg_errmsg);
43 void f_sort(typval_T *argvars, typval_T *rettv);
44 void f_uniq(typval_T *argvars, typval_T *rettv);
40 /* vim: set ft=c : */ 45 /* vim: set ft=c : */