comparison src/proto/blob.pro @ 15466:435fcefd2c8e v8.1.0741

patch 8.1.0741: viminfo with Blob is not tested commit https://github.com/vim/vim/commit/8c8b8bb56c724cc1bfc3d8520eec33f2d399697c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 13 17:48:04 2019 +0100 patch 8.1.0741: viminfo with Blob is not tested Problem: Viminfo with Blob is not tested. Solution: Extend the viminfo test. Fix reading a blob. Fixed storing a special variable value.
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Jan 2019 18:00:05 +0100
parents 1d2b5c016f17
children c2382f0d1279
comparison
equal deleted inserted replaced
15465:0f076f6c5356 15466:435fcefd2c8e
8 char_u blob_get(blob_T *b, int idx); 8 char_u blob_get(blob_T *b, int idx);
9 void blob_set(blob_T *b, int idx, char_u c); 9 void blob_set(blob_T *b, int idx, char_u c);
10 int blob_equal(blob_T *b1, blob_T *b2); 10 int blob_equal(blob_T *b1, blob_T *b2);
11 int read_blob(FILE *fd, blob_T *blob); 11 int read_blob(FILE *fd, blob_T *blob);
12 int write_blob(FILE *fd, blob_T *blob); 12 int write_blob(FILE *fd, blob_T *blob);
13 char_u *blob2string(blob_T *blob, char_u **tofree, char_u *numbuf);
14 blob_T *string2blob(char_u *str);
13 /* vim: set ft=c : */ 15 /* vim: set ft=c : */