We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b06821 commit c436011Copy full SHA for c436011
include/git2/oid.h
@@ -26,9 +26,11 @@ typedef enum {
26
27
/** Size (in bytes) of a raw/binary oid */
28
#define GIT_OID_SHA1_SIZE 20
29
+#define GIT_OID_MAX_SIZE GIT_OID_SHA1_SIZE
30
31
/** Size (in bytes) of a hex formatted oid */
32
#define GIT_OID_SHA1_HEXSIZE (GIT_OID_SHA1_SIZE * 2)
33
+#define GIT_OID_MAX_HEXSIZE GIT_OID_SHA1_HEXSIZE
34
35
/** Minimum length (in number of hex characters,
36
* i.e. packets of 4 bits) of an oid prefix */
0 commit comments