#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
int x[2] = {1, 2};
int y[2] = {3, 4};
int z[2];
int main() {
void *handle;
void (*add_vec)(int *, int *, int *, int);
char *error;
handle = dlopen("../static_library/libvec.so", RTLD_LAZY);
if (!handle) {
fprintf(stderr, "%s\n", dlerror());
exit(1);
}
add_vec = dlsym(handle, "add_vec");
if ((error = dlerror()) != NULL) {
fprintf(stderr, "%s\n", error);
exit(1);
}
add_vec(x, y, z, 2);
printf("z = [%d %d]\n", z[0], z[1]);
if ((dlclose(handle)) < 0) {
fprintf(stderr, "%s\n", dlerror());
exit(1);
}
return 0;
}