xref: /php-src/ext/dom/lexbor/lexbor/html/node.c (revision f0934090)
1 /*
2 * Copyright (C) 2020 Alexander Borisov
3 *
4 * Author: Alexander Borisov <borisov@lexbor.com>
5 */
6 
7 #include "lexbor/html/node.h"
8 
9 
10 bool
lxb_html_node_is_void_noi(lxb_dom_node_t * node)11 lxb_html_node_is_void_noi(lxb_dom_node_t *node)
12 {
13     return lxb_html_node_is_void(node);
14 }
15