summaryrefslogtreecommitdiffstats
path: root/src/parser.h
blob: 61db8a3b9f34042dd1819453bc45483d05d55ffd (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef _VT100_PARSER_H
#define _VT100_PARSER_H

#include <stdint.h>

int vt100_parser_yylex(VT100Screen *vt, uint8_t *yytext, size_t yyleng);

#endif