dtob-sys 0.1.1

Raw FFI bindings to the dtob C library (encoder + decoder).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef HTML_RULES_H
#define HTML_RULES_H

#include <stddef.h>

int  html_is_void(const char *tag);
int  html_is_raw_text(const char *tag);
int  html_is_escapable_raw_text(const char *tag);
int  html_implicitly_closes(const char *parent, const char *child);
void html_normalize_tag(char *tag, size_t len);

#endif