* xmlTextReaderSetMaxAmplification: * @reader: an XML reader * @maxAmpl: maximum amplification factor * * Set the maximum amplification factor. See xmlCtxtSetMaxAmplification. */
| 5045 | * Set the maximum amplification factor. See xmlCtxtSetMaxAmplification. |
| 5046 | */ |
| 5047 | void |
| 5048 | xmlTextReaderSetMaxAmplification(xmlTextReaderPtr reader, unsigned maxAmpl) |
| 5049 | { |
| 5050 | xmlCtxtSetMaxAmplification(reader->ctxt, maxAmpl); |
| 5051 | } |
| 5052 | |
| 5053 | /** |
| 5054 | * xmlTextReaderGetLastError: |
no test coverage detected