1 2 3 4 5 6 7 8
// widget.h — struct with cross-file methods (should NOT be flagged as lazy_class) typedef struct { int x; int y; } Widget; void widget_init(Widget *w); void widget_draw(Widget *w);