mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
17 lines
340 B
C
17 lines
340 B
C
|
|
||
|
#ifndef EL__DOCUMENT_HTML_PARSER_FORMS_H
|
||
|
#define EL__DOCUMENT_HTML_PARSER_FORMS_H
|
||
|
|
||
|
#include "document/html/parser/parse.h"
|
||
|
|
||
|
struct html_context;
|
||
|
|
||
|
element_handler_T html_button;
|
||
|
element_handler_T html_form;
|
||
|
element_handler_T html_input;
|
||
|
element_handler_T html_select;
|
||
|
element_handler_T html_option;
|
||
|
element_handler_T html_textarea;
|
||
|
|
||
|
#endif
|