4 - is_null_sha1(OID.hash)
8 struct object_id *OIDPTR;
10 - is_null_sha1(OIDPTR->hash)
20 identifier f != oidclr;
21 struct object_id *OIDPTR;
24 - hashclr(OIDPTR->hash)
29 struct object_id OID1, OID2;
31 - hashcmp(OID1.hash, OID2.hash)
32 + oidcmp(&OID1, &OID2)
35 identifier f != oidcmp;
36 struct object_id *OIDPTR1, OIDPTR2;
39 - hashcmp(OIDPTR1->hash, OIDPTR2->hash)
40 + oidcmp(OIDPTR1, OIDPTR2)
44 struct object_id *OIDPTR;
47 - hashcmp(OIDPTR->hash, OID.hash)
48 + oidcmp(OIDPTR, &OID)
51 struct object_id *OIDPTR;
54 - hashcmp(OID.hash, OIDPTR->hash)
55 + oidcmp(&OID, OIDPTR)
58 struct object_id *OIDPTR1;
59 struct object_id *OIDPTR2;
61 - oidcmp(OIDPTR1, OIDPTR2) == 0
62 + oideq(OIDPTR1, OIDPTR2)
65 identifier f != hasheq;
69 - hashcmp(E1, E2) == 0
74 struct object_id *OIDPTR1;
75 struct object_id *OIDPTR2;
77 - oidcmp(OIDPTR1, OIDPTR2) != 0
78 + !oideq(OIDPTR1, OIDPTR2)
81 identifier f != hasheq;
85 - hashcmp(E1, E2) != 0