1 /*
2  * Copyright (C) 2018-2020 Alexander Borisov
3  *
4  * Author: Alexander Borisov <borisov@lexbor.com>
5  */
6 
7 #ifndef LEXBOR_HTML_TOKENIZER_STATE_DOCTYPE_H
8 #define LEXBOR_HTML_TOKENIZER_STATE_DOCTYPE_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #include "lexbor/html/tokenizer.h"
15 
16 
17 LXB_API const lxb_char_t *
18 lxb_html_tokenizer_state_doctype_before(lxb_html_tokenizer_t *tkz,
19                                         const lxb_char_t *data,
20                                         const lxb_char_t *end);
21 
22 
23 #ifdef __cplusplus
24 } /* extern "C" */
25 #endif
26 
27 #endif /* LEXBOR_HTML_TOKENIZER_STATE_DOCTYPE_H */
28