diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2022-01-17 13:40:37 -0500 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2022-06-14 22:29:57 -0400 |
| commit | 0acaf3a8eb7c3276b7864df8f5588c7007b38f35 (patch) | |
| tree | a5f6a678339651be6c9681f84a489950d34b9fb2 /include/git2/oid.h | |
| parent | dbc4ac1c76827e954e0aa27afe8bb7e0b8993a93 (diff) | |
| download | libgit2-0acaf3a8eb7c3276b7864df8f5588c7007b38f35.tar.gz | |
oid: define GIT_OID_SHA1_ZERO
Callers should not assume the layout of the oid structure; provide them
a macro that defines the null / zero sha1 object id.
Diffstat (limited to 'include/git2/oid.h')
| -rw-r--r-- | include/git2/oid.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/git2/oid.h b/include/git2/oid.h index 0d0f05489..3dedae85e 100644 --- a/include/git2/oid.h +++ b/include/git2/oid.h @@ -36,6 +36,16 @@ typedef struct git_oid { } git_oid; /** + * The binary representation of the null object ID. + */ +#define GIT_OID_SHA1_ZERO { { 0 } } + +/** + * The string representation of the null object ID. + */ +#define GIT_OID_SHA1_HEXZERO "0000000000000000000000000000000000000000" + +/** * Parse a hex formatted object id into a git_oid. * * @param out oid structure the result is written into. |
