Initial commit with Madagascar 2016-01-22

This commit is contained in:
2018-01-25 16:50:51 +01:00
committed by Patrick Lühne
commit 21571c20a1
45 changed files with 15026 additions and 0 deletions

12
scc.h Normal file
View File

@@ -0,0 +1,12 @@
/* 2010 (C) Jussi Rintanen */
typedef struct _scc {
int NofEls;
int *els;
struct _scc *next;
} *sccs;
int scc(int);
sccs SCCS;