php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
base.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2018-2021 Alexander Borisov
3 *
4 * Author: Alexander Borisov <borisov@lexbor.com>
5 */
6
7#ifndef LEXBOR_HTML_BASE_H
8#define LEXBOR_HTML_BASE_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#include "lexbor/core/base.h"
15
16
17#define LXB_HTML_VERSION_MAJOR 2
18#define LXB_HTML_VERSION_MINOR 5
19#define LXB_HTML_VERSION_PATCH 0
20
21#define LXB_HTML_VERSION_STRING LEXBOR_STRINGIZE(LXB_HTML_VERSION_MAJOR) "." \
22 LEXBOR_STRINGIZE(LXB_HTML_VERSION_MINOR) "." \
23 LEXBOR_STRINGIZE(LXB_HTML_VERSION_PATCH)
24
25
27typedef unsigned int lxb_html_tokenizer_opt_t;
29
30/*
31 * Please, see lexbor/base.h lexbor_status_t
32 */
33typedef enum {
35}
37
38
39
40#ifdef __cplusplus
41} /* extern "C" */
42#endif
43
44#endif /* LEXBOR_HTML_BASE_H */
unsigned int lxb_html_tokenizer_opt_t
Definition base.h:27
struct lxb_html_tokenizer lxb_html_tokenizer_t
Definition base.h:26
struct lxb_html_tree lxb_html_tree_t
Definition base.h:28
lxb_html_status_t
Definition base.h:33
@ LXB_HTML_STATUS_OK
Definition base.h:34