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

Function hc_dlib_deinit

dynamic/dynamic.c:129–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127}
128
129struct hc_dlib *hc_dlib_deinit(struct hc_dlib *lib) {
130 if (dlclose(lib->handle) != 0) {
131 hc_throw("Failed closing dynamic library: ", dlerror());
132 }
133
134 return lib;
135}
136
137void *hc_dlib_find(const struct hc_dlib *lib, const char *s) {
138 dlerror();

Callers 1

dynamic_testsFunction · 0.85

Calls

no outgoing calls

Tested by 1

dynamic_testsFunction · 0.68