wip
This commit is contained in:
12
adj_matrix.c
Normal file
12
adj_matrix.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "common.h"
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
char buf[512];
|
||||
char *dest;
|
||||
|
||||
while (( dest = slowgraph_next_edge(stdin, buf, slowgraph_lenof(buf), 0) )) {
|
||||
printf("%s -> %s\n", buf, dest);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user