free_attr_list_widgets(l);
free(l);
}
-attr_list *attr_list_new(Agraph_t * g, int with_widgets)
-{
+
+// creates a new attr_list
+// attr_list is a basic stack implementation
+// with alphanumeric sorting functions
+// that uses quicksort
+static attr_list *attr_list_new(Agraph_t *g, int with_widgets) {
int id;
attr_list *l = malloc(sizeof(attr_list));
l->attr_count = 0;
#include "smyrnadefs.h"
-/*
- creates a new attr_list
- attr_list is a basic stack implementation
- with alphanumeric sorting functions
- that uses quicksort
-
-*/
-
#define ATTR_NOTEBOOK_IDX 6
-extern attr_list* attr_list_new(Agraph_t * g,int with_widgets );
-
_BB void on_txtAttr_changed(GtkWidget * widget, gpointer user_data);
_BB void attr_label_motion(GtkWidget * widget,GdkEventMotion * event, gpointer data);
_BB void on_attrApplyBtn_clicked (GtkWidget * widget, gpointer user_data);