MCPcopy Create free account
hub / github.com/codr7/hacktical-c / hc_error_free

Function hc_error_free

error/error.c:73–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73void hc_error_free(struct hc_error *e) {
74 free(e->message);
75 free(e);
76}
77
78bool hc_streq(const char *l, const char *r) {
79 for (; *l && *l == *r; l++, r++);

Callers 1

_hc_throwFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected