dlsym

0001-01-01

The dlsym() function takes a handle of a shared object returned by dlopen() and a symbol name, and retuns the address of the symbol in memory.

#include <dlfcn.h>
void *dlsym(void *handle, const char *symbol);

Links to this note