aboutsummaryrefslogtreecommitdiff
path: root/src/graphs.h.old
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-10-01 23:39:00 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-10-01 23:39:00 +0200
commit7539f8c8804849294e100c5442e0397f4f4d2c40 (patch)
tree129fa0bb0f18604bd378724794c855e8e4d230dc /src/graphs.h.old
parentStart moving to scheme structs. (diff)
downloadcalp-7539f8c8804849294e100c5442e0397f4f4d2c40.tar.gz
calp-7539f8c8804849294e100c5442e0397f4f4d2c40.tar.xz
Disabled bunch of old stuff, new stuff kinda builds.
Diffstat (limited to 'src/graphs.h.old')
-rw-r--r--src/graphs.h.old15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/graphs.h.old b/src/graphs.h.old
new file mode 100644
index 00000000..fe521003
--- /dev/null
+++ b/src/graphs.h.old
@@ -0,0 +1,15 @@
+#ifndef GRAPHS_H
+#define GRAPHS_H
+
+#include "vcal.h"
+
+int create_graph_trie (vcomponent* ev, char* filename);
+
+int create_graph_vcomponent (vcomponent* root, char* outfile);
+
+int helper_vcomponent (vcomponent* root, FILE* f);
+
+int trie_to_dot ( TRIE(content_line)*, FILE* );
+int trie_to_dot_helper ( TRIE_NODE(content_line)*, FILE* );
+
+#endif /* GRAPHS_H */