How can I make this to work ?
typedef struct { A_t* obj; } A_t;
A_t is unknown. But pointer (fixed size). Can I do it without using void* ?
Ok I find
typedef struct A_t A_t; struct A_t { A_t* obj; };