libdom
Loading...
Searching...
No Matches
html_li_element.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
6 * Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
7 */
8#ifndef dom_html_li_element_h_
9#define dom_html_li_element_h_
10
11#include <stdbool.h>
12
13#include <dom/inttypes.h>
14#include <dom/core/exceptions.h>
15#include <dom/core/string.h>
16
18
20 dom_html_li_element *ele, dom_long *value);
21
23 dom_html_li_element *ele, dom_long value);
24
26 dom_html_li_element *ele, dom_string **type);
27
30
31#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_li_element_get_value(dom_html_li_element *ele, dom_long *value)
Definition html_li_element.c:92
dom_exception dom_html_li_element_get_type(dom_html_li_element *ele, dom_string **type)
dom_exception dom_html_li_element_set_type(dom_html_li_element *ele, dom_string *type)
dom_exception dom_html_li_element_set_value(dom_html_li_element *ele, dom_long value)
Definition html_li_element.c:104
int32_t dom_long
Definition inttypes.h:26
Definition html_li_element.h:16
Definition string.h:19