21 lines
261 B
C
21 lines
261 B
C
#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
|