Is there any way to access a function defined in a specific header file?
For example, in java, you can do:
Method m = Object.class.getMethod("foo", null);
Object result = m.invoke(null);
Is there any way to just pull all functions from a header, and then execute them one at a time?