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

12
edges.c
View File

@@ -4,8 +4,20 @@
#include <stdio.h>
#include "bubulles.h"
#include "edges.h"
/* --------------------------------------------------------------------- */
int print_edgelist_desc(EdgeList *list, int k)
{
printf("edgelist addr: %p\n", list);
if (k) {
fprintf(stderr, "%s: k must be 0, was %d\n", __func__, k);
return k;
}
return 0;
}
/* --------------------------------------------------------------------- */