diff options
| author | Cody Logan <cody@lokken.dev> | 2023-11-28 17:15:27 -0800 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-11-28 17:15:27 -0800 |
| commit | a9dacce3f986e28e5ca16268ebfa57566cfc65cf (patch) | |
| tree | 5bbb53bba3c85062b8261677b6ec47f72ad98979 /parse-file.h | |
| parent | 9253b30c0dd8180366ee884c6404b23772c57997 (diff) | |
| download | convert-markdown-a9dacce3f986e28e5ca16268ebfa57566cfc65cf.tar.gz convert-markdown-a9dacce3f986e28e5ca16268ebfa57566cfc65cf.zip | |
Initial attempts at testing
Diffstat (limited to 'parse-file.h')
| -rw-r--r-- | parse-file.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/parse-file.h b/parse-file.h new file mode 100644 index 0000000..d0054e4 --- /dev/null +++ b/parse-file.h @@ -0,0 +1,12 @@ +#include "config.h" + +#if HAVE_ERR +#include <err.h> +#endif +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <sys/queue.h> +#include <lowdown.h> + +void _parse_file(FILE*, FILE*); |
