You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
372 B
20 lines
372 B
/*************
|
|
* Header file for graphdb.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef GRAPHDB_H_INCLUDED
|
|
#define GRAPHDB_H_INCLUDED
|
|
|
|
GRAPH *NewGraph(void);
|
|
GRAPH *FindGraph(int id);
|
|
GRAPH *CopyGraph(GRAPH *graph);
|
|
int DestroyGraph(int id);
|
|
void FreeGraphs(void);
|
|
void SetGraphContext(int graphid);
|
|
void PushGraphContext(GRAPH *graph);
|
|
void PopGraphContext(void);
|
|
|
|
|
|
|
|
#endif
|