1 #include "test7.h" 2 first_type_constructor(struct first_type * ft)3 void first_type_constructor(struct first_type *ft) 4 { 5 ft->member0 = 0; 6 ft->member1 = 0; 7 ft->ctor = first_type_constructor; 8 } 9