blob: 407b47a33a6d40f3224a5c8b2631b61c68c01f21 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef GENERATOR_H
#define GENERATOR_H
#include "types.h"
int gen_markdown(const IsaDb *db, const char *output_path);
int gen_html(const IsaDb *db, const char *output_path);
#endif
|