diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-27 23:12:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-27 23:12:12 +0200 |
commit | 9f9fe37f6750f342255a51f158a7bb372c827f7f (patch) | |
tree | c140c42b9f184c0bba789f3d4ed749a1e6fb3ed4 /src/proto/blob.pro | |
parent | c273405188cc2f19e949089cda1f92bd81610dac (diff) | |
download | vim-git-9f9fe37f6750f342255a51f158a7bb372c827f7f.tar.gz |
patch 8.1.1763: evalfunc.c is still too bigv8.1.1763
Problem: Evalfunc.c is still too big.
Solution: Move dict and list functions to a better place.
Diffstat (limited to 'src/proto/blob.pro')
-rw-r--r-- | src/proto/blob.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/blob.pro b/src/proto/blob.pro index 019692dc3..706a83ea0 100644 --- a/src/proto/blob.pro +++ b/src/proto/blob.pro @@ -13,4 +13,5 @@ int read_blob(FILE *fd, blob_T *blob); int write_blob(FILE *fd, blob_T *blob); char_u *blob2string(blob_T *blob, char_u **tofree, char_u *numbuf); blob_T *string2blob(char_u *str); +void blob_remove(typval_T *argvars, typval_T *rettv); /* vim: set ft=c : */ |