On 15/10/20 15:41, Alexander Bulekov wrote: > +typedef struct general_fuzz_config { > + const char *name, *args, *objects; > +} general_fuzz_config; > + > +GArray *get_general_fuzz_configs(void);
Can't it be even a "const struct general_fuzz_config general_fuzz_configs[] = ..." instead of a GArray? Not a huge difference, but still. Paolo