* xmlSAX2CDataBlock: * @ctx: the user data (XML parser context) * @value: The pcdata content * @len: the block length * * called when a pcdata block has been parsed */
| 2604 | * called when a pcdata block has been parsed |
| 2605 | */ |
| 2606 | void |
| 2607 | xmlSAX2CDataBlock(void *ctx, const xmlChar *value, int len) |
| 2608 | { |
| 2609 | xmlSAX2Text((xmlParserCtxtPtr) ctx, value, len, XML_CDATA_SECTION_NODE); |
| 2610 | } |
| 2611 | |
| 2612 | static int xmlSAX2DefaultVersionValue = 2; |
| 2613 |