Diff for /XML/tree.c between versions 1.144 and 1.145

version 1.144, 2000/11/25 09:17:00 version 1.145, 2000/11/25 09:41:10
Line 4 Line 4
  * See Copyright for the status of this software.   * See Copyright for the status of this software.
  *   *
  * Daniel.Veillard@w3.org   * Daniel.Veillard@w3.org
    *
    * 14 Nov 2000 ht - Changed the name of function xmlBufferWriteChar under VMS
    * as it was similar to xmlBufferWriteCHAR when compiling without case
    * sensitivity.
    *  
  */   */
   
 #ifdef WIN32  #ifdef WIN32
Line 4623  xmlBufferCCat(xmlBufferPtr buf, const ch Line 4628  xmlBufferCCat(xmlBufferPtr buf, const ch
  * @buf:  the XML buffer   * @buf:  the XML buffer
  * @string:  the string to add   * @string:  the string to add
  *   *
  * routine which manage and grows an output buffer. This one add   * routine which manages and grows an output buffer. This one adds
  * xmlChars at the end of the buffer.   * xmlChars at the end of the buffer.
  */   */
 void  void
 xmlBufferWriteCHAR(xmlBufferPtr buf, const xmlChar *string) {  #ifdef VMS
   xmlBufferWriteXmlCHAR
   #else
   xmlBufferWriteCHAR
   #endif
   (xmlBufferPtr buf, const xmlChar *string) {
     xmlBufferCat(buf, string);      xmlBufferCat(buf, string);
 }  }
   

Removed from v.1.144  
changed lines
  Added in v.1.145


Webmaster