blob: 69953248b524e33df67bb7d6da51a9014391c043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* blogc: A blog compiler.
* Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the BSD License.
* See the file COPYING.
*/
#ifndef _OUTPUT_H
#define _OUTPUT_H
#include <stdlib.h>
void blogc_parser_syntax_error(const char *name, const char *src,
size_t src_len, size_t current);
#endif /* _OUTPUT_H */
|