| 19 | namespace common { |
| 20 | |
| 21 | void* getFunctionPointer(LibHandle handle, const char* symbolName) { |
| 22 | return dlsym(handle, symbolName); |
| 23 | } |
| 24 | |
| 25 | LibHandle loadLibrary(const char* library_name) { |
| 26 | return dlopen(library_name, RTLD_LAZY); |
no outgoing calls
no test coverage detected