Edit

kc3-lang/libxml2/include/private/save.h

Branch :

  • Show log

    Commit

  • Author : Nick Wellnhofer
    Date : 2022-11-27 02:09:27
    Hash : ccb6d544
    Message : Hide internal functions These functions were never declared in public headers, so it should be safe to hide them. Fixes #139.

  • include/private/save.h
  • #ifndef XML_SAVE_H_PRIVATE__
    #define XML_SAVE_H_PRIVATE__
    
    #include <libxml/tree.h>
    #include <libxml/xmlversion.h>
    
    #ifdef LIBXML_OUTPUT_ENABLED
    
    XML_HIDDEN void
    xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
                                  xmlAttrPtr attr, const xmlChar * string);
    XML_HIDDEN void
    xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur);
    
    #endif /* LIBXML_OUTPUT_ENABLED */
    
    #endif /* XML_SAVE_H_PRIVATE__ */