diff options
Diffstat (limited to 'plugins/MirOTR/src/entities.h')
-rw-r--r-- | plugins/MirOTR/src/entities.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/MirOTR/src/entities.h b/plugins/MirOTR/src/entities.h new file mode 100644 index 0000000000..0d3cc1b822 --- /dev/null +++ b/plugins/MirOTR/src/entities.h @@ -0,0 +1,24 @@ +// (C) of entities.h: Christoph +// http://mercurial.intuxication.org/hg/cstuff/raw-file/tip/entities.h +// http://stackoverflow.com/questions/1082162/how-to-unescape-html-in-c/1082191#1082191 +// modified by ProgAndy + +#ifndef DECODE_HTML_ENTITIES_UTF8 +#define DECODE_HTML_ENTITIES_UTF8 + +extern size_t decode_html_entities_utf8(char *dest, const char *src, size_t len); +/* if `src` is `NULL`, input will be taken from `dest`, decoding + the entities in-place + + otherwise, the output will be placed in `dest`, which should point + to a buffer big enough to hold `strlen(src) + 1` characters, while + `src` remains unchanged + if `len` is given, `dest` must be at least big enough + to hold `len + 1` characters. + + the function returns the length of the decoded string +*/ + +extern char * encode_html_entities_utf8(const char *src); + +#endif |