What's static function for in c?
- by user198729
I only see static methods by which we don't need to instantiate a class to call the method.
What's the purpose of a static function?
static GtkWidget *
create_bbox (gint horizontal,
char *title,
gint spacing,
gint layout)
{
...
}