| 8 | #endif |
| 9 | |
| 10 | struct cmark_reference { |
| 11 | struct cmark_reference *next; |
| 12 | unsigned char *label; |
| 13 | unsigned char *url; |
| 14 | unsigned char *title; |
| 15 | unsigned int age; |
| 16 | unsigned int size; |
| 17 | }; |
| 18 | |
| 19 | typedef struct cmark_reference cmark_reference; |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected