Is there a way to have some kind of default constructor (like a C++ one) for C user types defined with a structure?
I already have a macro which works like a fast in
No, structs are nothing but a bunch of data. You cannot declare functions within the structs, so there is no way to create a constructor for it.