~ubuntu-branches/ubuntu/quantal/libxml2/quantal-security

« back to all changes in this revision

Viewing changes to include/libxml/tree.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2012-06-25 13:14:43 UTC
  • mfrom: (43.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120625131443-t0pb8n237uaz4z30
Tags: 2.8.0+dfsg1-4ubuntu1
* Merge with Debian (LP: #987502), remaining changes:
  - Don't drop *.la file. Some libraries still depend on it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
    XML_BUFFER_ALLOC_DOUBLEIT,  /* double each time one need to grow */
75
75
    XML_BUFFER_ALLOC_EXACT,     /* grow only to the minimal size */
76
76
    XML_BUFFER_ALLOC_IMMUTABLE, /* immutable buffer */
77
 
    XML_BUFFER_ALLOC_IO         /* special allocation scheme used for I/O */
 
77
    XML_BUFFER_ALLOC_IO,        /* special allocation scheme used for I/O */
 
78
    XML_BUFFER_ALLOC_HYBRID     /* exact up to a threshold, and doubleit thereafter */
78
79
} xmlBufferAllocationScheme;
79
80
 
80
81
/**
694
695
                xmlBufferEmpty          (xmlBufferPtr buf);
695
696
XMLPUBFUN const xmlChar* XMLCALL        
696
697
                xmlBufferContent        (const xmlBufferPtr buf);
 
698
XMLPUBFUN xmlChar* XMLCALL
 
699
                xmlBufferDetach         (const xmlBufferPtr buf);
697
700
XMLPUBFUN void XMLCALL          
698
701
                xmlBufferSetAllocationScheme(xmlBufferPtr buf,
699
702
                                         xmlBufferAllocationScheme scheme);