php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
state.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2021-2022 Alexander Borisov
3 *
4 * Author: Alexander Borisov <borisov@lexbor.com>
5 */
6
7#ifndef LXB_CSS_STATE_H
8#define LXB_CSS_STATE_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#include "lexbor/css/base.h"
15
16
17LXB_API bool
19 const lxb_css_syntax_token_t *token, void *ctx);
20
21LXB_API bool
23 const lxb_css_syntax_token_t *token, void *ctx);
24
25LXB_API bool
27 const lxb_css_syntax_token_t *token, void *ctx);
28
29
30#ifdef __cplusplus
31} /* extern "C" */
32#endif
33
34#endif /* LXB_CSS_STATE_H */
struct lxb_css_syntax_token lxb_css_syntax_token_t
Definition base.h:46
struct lxb_css_parser lxb_css_parser_t
Definition base.h:41
LXB_API bool lxb_css_state_failed(lxb_css_parser_t *parser, const lxb_css_syntax_token_t *token, void *ctx)
Definition state.c:32
LXB_API bool lxb_css_state_stop(lxb_css_parser_t *parser, const lxb_css_syntax_token_t *token, void *ctx)
Definition state.c:47
LXB_API bool lxb_css_state_success(lxb_css_parser_t *parser, const lxb_css_syntax_token_t *token, void *ctx)
Definition state.c:13
#define LXB_API
Definition def.h:48