blob: dd2b59fc5ec25bfc2ab0b820dbc94fdc997e26d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// MIT License, Copyright (c) 2020 Marvin Borner
// HTML parsing is mainly based on the XML parser
#ifndef HTML_H
#define HTML_H
int html_self_closing(const char *tag);
#endif
|