You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
1.1 KiB
95 lines
1.1 KiB
@@ |
|
expression E1; |
|
@@ |
|
- is_null_sha1(E1.hash) |
|
+ is_null_oid(&E1) |
|
|
|
@@ |
|
expression E1; |
|
@@ |
|
- is_null_sha1(E1->hash) |
|
+ is_null_oid(E1) |
|
|
|
@@ |
|
expression E1; |
|
@@ |
|
- sha1_to_hex(E1.hash) |
|
+ oid_to_hex(&E1) |
|
|
|
@@ |
|
expression E1; |
|
@@ |
|
- sha1_to_hex(E1->hash) |
|
+ oid_to_hex(E1) |
|
|
|
@@ |
|
expression E1; |
|
@@ |
|
- sha1_to_hex_r(E1.hash) |
|
+ oid_to_hex_r(&E1) |
|
|
|
@@ |
|
expression E1; |
|
@@ |
|
- sha1_to_hex_r(E1->hash) |
|
+ oid_to_hex_r(E1) |
|
|
|
@@ |
|
expression E1; |
|
@@ |
|
- hashclr(E1.hash) |
|
+ oidclr(&E1) |
|
|
|
@@ |
|
expression E1; |
|
@@ |
|
- hashclr(E1->hash) |
|
+ oidclr(E1) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcmp(E1.hash, E2.hash) |
|
+ oidcmp(&E1, &E2) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcmp(E1->hash, E2->hash) |
|
+ oidcmp(E1, E2) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcmp(E1->hash, E2.hash) |
|
+ oidcmp(E1, &E2) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcmp(E1.hash, E2->hash) |
|
+ oidcmp(&E1, E2) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcpy(E1.hash, E2.hash) |
|
+ oidcpy(&E1, &E2) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcpy(E1->hash, E2->hash) |
|
+ oidcpy(E1, E2) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcpy(E1->hash, E2.hash) |
|
+ oidcpy(E1, &E2) |
|
|
|
@@ |
|
expression E1, E2; |
|
@@ |
|
- hashcpy(E1.hash, E2->hash) |
|
+ oidcpy(&E1, E2)
|
|
|