8 identifier f != oidclr;
9 struct object_id *OIDPTR;
12 - hashclr(OIDPTR->hash)
17 struct object_id OID1, OID2;
19 - hashcmp(OID1.hash, OID2.hash)
20 + oidcmp(&OID1, &OID2)
23 identifier f != oidcmp;
24 struct object_id *OIDPTR1, OIDPTR2;
27 - hashcmp(OIDPTR1->hash, OIDPTR2->hash)
28 + oidcmp(OIDPTR1, OIDPTR2)
32 struct object_id *OIDPTR;
35 - hashcmp(OIDPTR->hash, OID.hash)
36 + oidcmp(OIDPTR, &OID)
39 struct object_id *OIDPTR;
42 - hashcmp(OID.hash, OIDPTR->hash)
43 + oidcmp(&OID, OIDPTR)
46 struct object_id *OIDPTR1;
47 struct object_id *OIDPTR2;
49 - oidcmp(OIDPTR1, OIDPTR2) == 0
50 + oideq(OIDPTR1, OIDPTR2)
53 identifier f != hasheq;
57 - hashcmp(E1, E2) == 0
62 struct object_id *OIDPTR1;
63 struct object_id *OIDPTR2;
65 - oidcmp(OIDPTR1, OIDPTR2) != 0
66 + !oideq(OIDPTR1, OIDPTR2)
69 identifier f != hasheq;
73 - hashcmp(E1, E2) != 0