diff options
| author | Patrick Steinhardt <ps@pks.im> | 2017-07-10 11:42:26 +0200 |
|---|---|---|
| committer | Patrick Steinhardt <ps@pks.im> | 2017-07-10 11:46:25 +0200 |
| commit | 9093ced6a10a050c6eee31a4ef3b9251f58ce561 (patch) | |
| tree | 3562775697e3264918dfd9f55d732ebb5d191ac0 /include/git2/patch.h | |
| parent | 0e165686d97264c2d7bc6b0317cf953581cbf695 (diff) | |
| download | libgit2-9093ced6a10a050c6eee31a4ef3b9251f58ce561.tar.gz | |
patch_generate: represent buffers as void pointers
Pointers to general data should usually be used as a void pointer such
that it is possible to hand in variables of a different pointer type
without the need to cast. This is the same when creating patches from
buffers, where the buffers may contain arbitrary data. Instead of
requiring the caller to care whether his buffer is e.g. `char *` or
`unsigned char *`, we should instead just accept a `void *`. This is
also consistent in how we tread other types like for example `git_blob`,
which also just has a void pointer as its raw contents.
Diffstat (limited to 'include/git2/patch.h')
| -rw-r--r-- | include/git2/patch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/patch.h b/include/git2/patch.h index 4eb9f0263..b177798e6 100644 --- a/include/git2/patch.h +++ b/include/git2/patch.h @@ -96,7 +96,7 @@ GIT_EXTERN(int) git_patch_from_blob_and_buffer( git_patch **out, const git_blob *old_blob, const char *old_as_path, - const char *buffer, + const void *buffer, size_t buffer_len, const char *buffer_as_path, const git_diff_options *opts); @@ -124,7 +124,7 @@ GIT_EXTERN(int) git_patch_from_buffers( const void *old_buffer, size_t old_len, const char *old_as_path, - const char *new_buffer, + const void *new_buffer, size_t new_len, const char *new_as_path, const git_diff_options *opts); |
