* endDocument: * @ctx: the user data (XML parser context) * * called when the document end has been detected. * DEPRECATED: use xmlSAX2EndDocument() */
| 1110 | * DEPRECATED: use xmlSAX2EndDocument() |
| 1111 | */ |
| 1112 | void |
| 1113 | endDocument(void *ctx) |
| 1114 | { |
| 1115 | DEPRECATED("endDocument") |
| 1116 | xmlSAX2EndDocument(ctx); |
| 1117 | } |
| 1118 | |
| 1119 | /** |
| 1120 | * attribute: |
nothing calls this directly
no test coverage detected