Rev 4197 | Rev 4704 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4197 | Rev 4243 | ||
---|---|---|---|
Line 47... | Line 47... | ||
47 | \ |
47 | \ |
48 | typedef struct name name##_t; \ |
48 | typedef struct name name##_t; \ |
49 | typedef name##_t * name##_ref; \ |
49 | typedef name##_t * name##_ref; \ |
50 | \ |
50 | \ |
51 | struct name{ \ |
51 | struct name{ \ |
52 | int size; \ |
52 | size_t size; \ |
53 | int next; \ |
53 | int next; \ |
54 | type ** items; \ |
54 | type ** items; \ |
55 | int magic; \ |
55 | int magic; \ |
56 | }; \ |
56 | }; \ |
57 | \ |
57 | \ |