Differences From Artifact [51f2e1e12f]:
- File cfwstring.c — part of check-in [db15fc9166] at 2012-04-08 17:32:57 on branch trunk — cfw_new() takes parameters now. (user: js, size: 3043) [annotate] [blame] [check-ins using]
- File src/cfwstring.c — part of check-in [839e11b5aa] at 2012-04-08 17:50:33 on branch trunk — Add a buildsys. (user: js, size: 3043) [annotate] [blame] [check-ins using]
To Artifact [59f525dc2e]:
- File src/cfwstring.c — part of check-in [1fd9e16f18] at 2012-04-08 19:06:46 on branch trunk — clsptr -> cls. (user: js, size: 3040) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
66 67 68 69 70 71 72 | static bool equal(void *ptr1, void *ptr2) { CFWObject *obj2 = ptr2; CFWString *str1, *str2; | | | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | static bool equal(void *ptr1, void *ptr2) { CFWObject *obj2 = ptr2; CFWString *str1, *str2; if (obj2->cls != cfw_string) return false; str1 = ptr1; str2 = ptr2; if (str1->len != str2->len) return false; |
︙ | ︙ |