This commit is contained in:
tTh
2023-03-24 15:32:13 +01:00
7 changed files with 41 additions and 4 deletions

14
edges.h
View File

@@ -3,3 +3,17 @@
*/
/* --------------------------------------------------------------------- */
typedef struct {
int A, B;
} AnEdge;
typedef struct {
char name[SZ_BUBULLE_TEXT+1];
int size; /* max number of edges */
int fidx; /* next free slot */
AnEdge *edges;
unsigned long flags;
} EdgeList;
/* --------------------------------------------------------------------- */