Hello all ;
Is there a way to create an interpreter structure from a nested C
structure ?
struct first {
int a;
int b;
}
struct second {
int c;
struct first d;
}
How do I create an interpreter structure corresponding to the second C
defined structure ?
Thanks for your help.
Laurent.