* xmlCharEncFirstLine: * @handler: char encoding transformation data structure * @out: an xmlBuffer for the output. * @in: an xmlBuffer for the input * * DEPERECATED: Don't use. * * Returns the number of bytes written or an XML_ENC_ERR code. */
| 2293 | * Returns the number of bytes written or an XML_ENC_ERR code. |
| 2294 | */ |
| 2295 | int |
| 2296 | xmlCharEncFirstLine(xmlCharEncodingHandler *handler, xmlBufferPtr out, |
| 2297 | xmlBufferPtr in) { |
| 2298 | return(xmlCharEncInFunc(handler, out, in)); |
| 2299 | } |
| 2300 | |
| 2301 | /** |
| 2302 | * xmlCharEncInput: |
nothing calls this directly
no test coverage detected