dlfcn

dlfcn

Functions

int dlclose ()
char * dlerror ()
void * dlopen ()
void * dlsym ()

Types and Values

#define RTLD_NOW
#define RTLD_LAZY

Description

Functions

dlclose ()

int
dlclose (void *handle);

dlerror ()

char *
dlerror (void);

dlopen ()

void *
dlopen (char const *pathname,
        int mode);

dlsym ()

void *
dlsym (void *handle,
       char const *name);

Types and Values

RTLD_NOW

# define RTLD_NOW 0

RTLD_LAZY

# define RTLD_LAZY 1