comparison src/proto/list.pro @ 9571:5eaa708ab50d v7.4.2063

commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 17 22:13:49 2016 +0200 patch 7.4.2063 Problem: eval.c is still too big. Solution: Split off internal functions to evalfunc.c.
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jul 2016 22:30:06 +0200
parents 1e68dfd7931b
children 172131507c85
comparison
equal deleted inserted replaced
9570:695186e11daa 9571:5eaa708ab50d
29 list_T *list_copy(list_T *orig, int deep, int copyID); 29 list_T *list_copy(list_T *orig, int deep, int copyID);
30 void vimlist_remove(list_T *l, listitem_T *item, listitem_T *item2); 30 void vimlist_remove(list_T *l, listitem_T *item, listitem_T *item2);
31 char_u *list2string(typval_T *tv, int copyID, int restore_copyID); 31 char_u *list2string(typval_T *tv, int copyID, int restore_copyID);
32 int list_join(garray_T *gap, list_T *l, char_u *sep, int echo_style, int restore_copyID, int copyID); 32 int list_join(garray_T *gap, list_T *l, char_u *sep, int echo_style, int restore_copyID, int copyID);
33 int get_list_tv(char_u **arg, typval_T *rettv, int evaluate); 33 int get_list_tv(char_u **arg, typval_T *rettv, int evaluate);
34 int write_list(FILE *fd, list_T *list, int binary);
34 /* vim: set ft=c : */ 35 /* vim: set ft=c : */