* entityDecl: * @ctx: the user data (XML parser context) * @name: the entity name * @type: the entity type * @publicId: The public ID of the entity * @systemId: The system ID of the entity * @content: the entity value (without processing). * * An entity definition has been parsed * DEPRECATED: use xmlSAX2EntityDecl() */
| 983 | * DEPRECATED: use xmlSAX2EntityDecl() |
| 984 | */ |
| 985 | void |
| 986 | entityDecl(void *ctx, const xmlChar * name, int type, |
| 987 | const xmlChar * publicId, const xmlChar * systemId, |
| 988 | xmlChar * content) |
| 989 | { |
| 990 | DEPRECATED("entityDecl") |
| 991 | xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content); |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * attributeDecl: |
nothing calls this directly
no test coverage detected