I\'m trying to emulate the most basic (toy) case of a vtable in C. Here is a basic example:
typedef struct Person { int id; char* name; } Person; <
typedef struct Person { int id; char* name; } Person;