I have code i'm trying to write, I have a void function, info.
void info(char *,char *);
This, I'm trying to call from my main function in a separate file. I want to use dlopen to open a so file. How would i call the function: info. From my other file?
I'm trying to use
info("testing: ","Success");
I get an undefined reference error on my info function.