#include <string.h>
#include <stdlib.h>
#include "ellipsis-entity.h"
#include "utils/ellipsis-error.h"
Functions | |
size_t | ellipsis‿entity (char32_t pc32[static 1], char const s[restrict static 3]) |
Detect an html or xml entity in s and return the Unicode code point in pc32[0] . | |
Variables | |
bool | ellipsis‿entity‿used = false |
True if the processed language excepts html entities as special encoding of characters. | |
size_t ellipsis‿entity | ( | char32_t | pc32[static 1], |
char const | s[restrict static 3] | ||
) |
Detect an html or xml entity in s
and return the Unicode code point in pc32[0]
.
The return value is the number of characters in s
used to form a valid entity or 1
if the string starts with a &
character, but otherwise an entity can not be detected. In the latter case pc32[0]
holds the value ‘U’&'; otherwise if the string does not start with a
&character it holds
0`.
References ellipsis‿xml‿entity().
Referenced by ellipsis‿lex‿nonspace‿_Inner(), and ellipsis‿lex‿space‿_Inner().
bool ellipsis‿entity‿used = false |
True if the processed language excepts html entities as special encoding of characters.
Referenced by ellipsis‿language‿html‿_Once‿init‿user(), ellipsis‿language‿lex‿_Once‿init‿user(), ellipsis‿language‿markdown‿_Once‿init‿user(), ellipsis‿lex‿nonspace‿_Inner(), and ellipsis‿lex‿space‿_Inner().