typedef struct bla_s { ... } bla_t;
Using the same name also works just fine, since structs and type aliases live in different namespaces:
typedef struct bla_t { ... } bla_t;
struct _GtkLabel; typedef struct _GtkLabel GtkLabel; // Use GtkLabel* in declarations
typedef struct GtkLabel GtkLabel;
https://gitlab.gnome.org/GNOME/gtk/-/blob/main/gtk/gtklabel....
Using the same name also works just fine, since structs and type aliases live in different namespaces:
...also before that topic comes up again: the _t postfix is not reserved in the C standard :)