comparison src/proto/blob.pro @ 19181:94eda51ba9ba v8.2.0149

patch 8.2.0149: maintaining a Vim9 branch separately is more work Commit: https://github.com/vim/vim/commit/8a7d6542b33e5d2b352262305c3bfdb2d14e1cf8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 15:56:19 2020 +0100 patch 8.2.0149: maintaining a Vim9 branch separately is more work Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 16:00:05 +0100
parents ef23ec1eee54
children aa150abca273
comparison
equal deleted inserted replaced
19180:8edf0aeb71b9 19181:94eda51ba9ba
1 /* blob.c */ 1 /* blob.c */
2 blob_T *blob_alloc(void); 2 blob_T *blob_alloc(void);
3 int rettv_blob_alloc(typval_T *rettv); 3 int rettv_blob_alloc(typval_T *rettv);
4 void rettv_blob_set(typval_T *rettv, blob_T *b); 4 void rettv_blob_set(typval_T *rettv, blob_T *b);
5 int blob_copy(typval_T *from, typval_T *to); 5 int blob_copy(blob_T *from, typval_T *to);
6 void blob_free(blob_T *b); 6 void blob_free(blob_T *b);
7 void blob_unref(blob_T *b); 7 void blob_unref(blob_T *b);
8 long blob_len(blob_T *b); 8 long blob_len(blob_T *b);
9 int blob_get(blob_T *b, int idx); 9 int blob_get(blob_T *b, int idx);
10 void blob_set(blob_T *b, int idx, char_u c); 10 void blob_set(blob_T *b, int idx, char_u c);