enc.h 827 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Summary: Internal Interfaces for encoding in libxml2
  3. * Description: this module describes a few interfaces which were
  4. * added along with the API changes in 2.9.0
  5. * those are private routines at this point
  6. *
  7. * Copy: See Copyright for the status of this software.
  8. *
  9. * Author: Daniel Veillard
  10. */
  11. #ifndef __XML_ENC_H__
  12. #define __XML_ENC_H__
  13. #include <libxml/tree.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. int xmlCharEncFirstLineInt(xmlCharEncodingHandler *handler, xmlBufferPtr out,
  18. xmlBufferPtr in, int len);
  19. int xmlCharEncFirstLineInput(xmlParserInputBufferPtr input, int len);
  20. int xmlCharEncInput(xmlParserInputBufferPtr input, int flush);
  21. int xmlCharEncOutput(xmlOutputBufferPtr output, int init);
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* __XML_ENC_H__ */