1 2 3 4 5 6 7 8
#include "graph.h" #include <stdlib.h> Vertex *graph_initialize(char label) { Vertex *item = malloc(sizeof(Vertex)); item->label = label; return item; };