ETVDB
0.6.0
ETVDB is a tool and a library to get data from The TV Database (TVDB)
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
external
html_entities
entities.h
1
/* Copyright 2012 Christoph Gärtner
2
Distributed under the Boost Software License, Version 1.0
3
*/
4
5
#ifndef DECODE_HTML_ENTITIES_UTF8_
6
#define DECODE_HTML_ENTITIES_UTF8_
7
8
#include <stddef.h>
9
10
extern
size_t
decode_html_entities_utf8(
char
*dest,
const
char
*src);
11
/* Takes input from <src> and decodes into <dest>, which should be a buffer
12
large enough to hold <strlen(src) + 1> characters.
13
14
If <src> is <NULL>, input will be taken from <dest>, decoding
15
the entities in-place.
16
17
The function returns the length of the decoded string.
18
*/
19
20
#endif
Generated on Sun Mar 6 2016 22:54:07 for ETVDB by
1.8.11