* htmlDocDumpMemory: * @cur: the document * @mem: OUT: the memory pointer * @size: OUT: the memory length * * Dump an HTML document in memory and return the xmlChar * and it's size. * It's up to the caller to free the memory. */
| 593 | * It's up to the caller to free the memory. |
| 594 | */ |
| 595 | void |
| 596 | htmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size) { |
| 597 | htmlDocDumpMemoryFormat(cur, mem, size, 1); |
| 598 | } |
| 599 | |
| 600 | |
| 601 | /************************************************************************ |