#include #include #include "test.h" /** * test_label_new: * @str: (allow-none): The text of the label * * Creates a new label with the given text inside it. You can * pass %NULL to get an empty label widget. * * Returns: (transfer floating): the new #GtkLabel **/ GtkWidget* test_label_new (const gchar *str) { return gtk_label_new(str); }