summaryrefslogtreecommitdiff
path: root/src/03/graph.c
blob: ed244ba1a3f389ad0cf01b9bdc214c8949b18cf2 (plain)
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;
};