summary refs log tree commit diff
path: root/parse.h
blob: 1267b3c28c9d86ab08218c98d262f58f35f62ca3 (plain)
1
2
3
4
5
6
7
8
9
#ifndef PARSE_H
#define PARSE_H

#include <stddef.h>
#include "doc.h"

int parse_doc(enum doc_type doct, int (*line_get)(char **, size_t *));

#endif