| 9 | int cmark_version(void) { return CMARK_VERSION; } |
| 10 | |
| 11 | const char *cmark_version_string(void) { return CMARK_VERSION_STRING; } |
| 12 | |
| 13 | static void *xcalloc(size_t nmem, size_t size) { |
| 14 | void *ptr = calloc(nmem, size); |
no outgoing calls
no test coverage detected