Overview
Comment: | clsptr -> cls. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1fd9e16f1871b79e99b7e0e4ba1c3b96 |
User & Date: | js on 2012-04-08 19:06:46 |
Other Links: | manifest | tags |
Context
2012-04-08
| ||
19:12 | Add corefw.h. check-in: 23d36a4cfe user: js tags: trunk | |
19:06 | clsptr -> cls. check-in: 1fd9e16f18 user: js tags: trunk | |
19:05 | Add cfw_class_name(). check-in: 07a4b94e52 user: js tags: trunk | |
Changes
Modified src/cfwarray.c from [58791b4765] to [ff44ea7550].
︙ | |||
68 69 70 71 72 73 74 | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | - + | static bool equal(void *ptr1, void *ptr2) { CFWObject *obj2 = ptr2; CFWArray *array1, *array2; size_t i; |
︙ |
Modified src/cfwobject.c from [36ac9401ba] to [13f417b3bd].
︙ | |||
32 33 34 35 36 37 38 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - + | cfw_new(CFWClass *class, ...) { CFWObject *obj; if ((obj = malloc(class->size)) == NULL) return NULL; |
︙ | |||
74 75 76 77 78 79 80 | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | - - + + - - + + - - + + | } void cfw_free(void *ptr) { CFWObject *obj = ptr; |
Modified src/cfwobject.h from [3af61b6ce2] to [b76c332b63].
︙ | |||
26 27 28 29 30 31 32 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | - + | #ifndef __CFWOBJECT_H__ #define __CFWOBJECT_H__ #include "cfwclass.h" typedef struct CFWObject { |
︙ |
Modified src/cfwstring.c from [51f2e1e12f] to [59f525dc2e].
︙ | |||
66 67 68 69 70 71 72 | 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; |
︙ |