HTMLparser.h

Estructura htmlEntityDesc

Sintaxis

/*
 * Internal description of an HTML entity.
 */
typedef struct _htmlEntityDesc htmlEntityDesc;
typedef htmlEntityDesc *htmlEntityDescPtr;
struct _htmlEntityDesc {
    unsigned int value;	/* the UNICODE value for the character */
    const char *name;	/* The entity name */
    const char *desc;   /* the description */
};

Miembros

value
El valor UNICODE para el carácter.
name
Cadena de caracteres con el nombre de la entidad.
desc
Cadena de caracteres con la descripción.