addition: Base for implementation

This commit is contained in:
2026-05-06 11:29:28 -06:00
parent 574bd1bc13
commit 0241829777
5 changed files with 48 additions and 1 deletions

View File

@@ -1,6 +1,20 @@
#ifndef GRAPH_H
#define GRAPH_H
#include <stdlib.h>
typedef struct Graph Graph;
typedef struct Vertex Vertex;
typedef struct Edge Edge;
typedef enum {
GRAPH_OK,
} GraphErr ;
typedef enum {
GRAPH_DIRECTED,
GRAPH_UNDIRECTED,
} GraphType;
#endif