aboutsummaryrefslogtreecommitdiff
path: root/src/graphs.h
blob: fe521003efd39609e50711c60f8cf82d7ef48bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 */