4 - is_null_sha1(OID.hash)
8 struct object_id *OIDPTR;
10 - is_null_sha1(OIDPTR->hash)
16 - sha1_to_hex(OID.hash)
20 identifier f != oid_to_hex;
21 struct object_id *OIDPTR;
24 - sha1_to_hex(OIDPTR->hash)
32 - sha1_to_hex_r(E, OID.hash)
33 + oid_to_hex_r(E, &OID)
36 identifier f != oid_to_hex_r;
38 struct object_id *OIDPTR;
41 - sha1_to_hex_r(E, OIDPTR->hash)
42 + oid_to_hex_r(E, OIDPTR)
52 identifier f != oidclr;
53 struct object_id *OIDPTR;
56 - hashclr(OIDPTR->hash)
61 struct object_id OID1, OID2;
63 - hashcmp(OID1.hash, OID2.hash)
64 + oidcmp(&OID1, &OID2)
67 identifier f != oidcmp;
68 struct object_id *OIDPTR1, OIDPTR2;
71 - hashcmp(OIDPTR1->hash, OIDPTR2->hash)
72 + oidcmp(OIDPTR1, OIDPTR2)
76 struct object_id *OIDPTR;
79 - hashcmp(OIDPTR->hash, OID.hash)
80 + oidcmp(OIDPTR, &OID)
83 struct object_id *OIDPTR;
86 - hashcmp(OID.hash, OIDPTR->hash)
87 + oidcmp(&OID, OIDPTR)
90 struct object_id OID1, OID2;
92 - hashcpy(OID1.hash, OID2.hash)
93 + oidcpy(&OID1, &OID2)
96 identifier f != oidcpy;
97 struct object_id *OIDPTR1;
98 struct object_id *OIDPTR2;
101 - hashcpy(OIDPTR1->hash, OIDPTR2->hash)
102 + oidcpy(OIDPTR1, OIDPTR2)
106 struct object_id *OIDPTR;
107 struct object_id OID;
109 - hashcpy(OIDPTR->hash, OID.hash)
110 + oidcpy(OIDPTR, &OID)
113 struct object_id *OIDPTR;
114 struct object_id OID;
116 - hashcpy(OID.hash, OIDPTR->hash)
117 + oidcpy(&OID, OIDPTR)
120 struct object_id *OIDPTR1;
121 struct object_id *OIDPTR2;
123 - oidcmp(OIDPTR1, OIDPTR2) == 0
124 + oideq(OIDPTR1, OIDPTR2)
127 identifier f != hasheq;
131 - hashcmp(E1, E2) == 0
136 struct object_id *OIDPTR1;
137 struct object_id *OIDPTR2;
139 - oidcmp(OIDPTR1, OIDPTR2) != 0
140 + !oideq(OIDPTR1, OIDPTR2)
143 identifier f != hasheq;
147 - hashcmp(E1, E2) != 0