Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>
int main(int argc, char* arcgv[]) {
void* FunctionLib;
const char *dlError;
void *fn;
printf("Testing dll shared routine\n");
FunctionLib = dlopen("/usr/lib/libdl.so", RTLD_LAZY);
dlError = dlerror();
printf("%s\n",dlError);
fn = dlsym(FunctionLib,"dlclose");
dlError = dlerror();
printf("%s %p\n",dlError,fn);
dlclose(FunctionLib);
return 0;
}