Rev 4704 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4704 | Rev 4743 | ||
|---|---|---|---|
| Line 54... | Line 54... | ||
| 54 | \ |
54 | \ |
| 55 | typedef struct name name##_t; \ |
55 | typedef struct name name##_t; \ |
| 56 | typedef name##_t * name##_ref; \ |
56 | typedef name##_t * name##_ref; \ |
| 57 | \ |
57 | \ |
| 58 | struct name{ \ |
58 | struct name{ \ |
| 59 | size_t size; \ |
59 | int size; \ |
| 60 | int next; \ |
60 | int next; \ |
| 61 | type ** items; \ |
61 | type ** items; \ |
| 62 | int magic; \ |
62 | int magic; \ |
| 63 | }; \ |
63 | }; \ |
| 64 | \ |
64 | \ |