blob: b2f3cf36dce031904402d9f2d73f067410d7fd40 (
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 LGPL-2 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 */
|