Diff for /XML/HTMLtree.c between versions 1.22 and 1.23

version 1.22, 2000/07/05 12:32:16 version 1.23, 2000/07/11 20:17:24
Line 34 Line 34
   
 /************************************************************************  /************************************************************************
  *                                                                      *   *                                                                      *
    *              Getting/Setting encoding meta tags                      *
    *                                                                      *
    ************************************************************************/
   
   /**
    * htmlGetMetaEncoding:
    * @doc:  the document
    * 
    * Encoding definition lookup in the Meta tags
    *
    * Returns the current encoding as flagged in the HTML source
    */
   const xmlChar *
   htmlGetMetaEncoding(htmlDocPtr doc) {
   }
   
   /**
    * htmlSetMetaEncoding:
    * @doc:  the document
    * @encoding:  the encoding string
    * 
    * Sets the current encoding in the Meta tags
    * NOTE: this will not change the document content encoding, just
    * the META flag associated.
    *
    * Returns 0 in case of success and -1 in case of error
    */
   int
   htmlSetMetaEncoding(htmlDocPtr doc, const xmlChar *encoding) {
   }
   
   /************************************************************************
    *                                                                      *
  *              Dumping HTML tree content to a simple buffer            *   *              Dumping HTML tree content to a simple buffer            *
  *                                                                      *   *                                                                      *
  ************************************************************************/   ************************************************************************/

Removed from v.1.22  
changed lines
  Added in v.1.23


Webmaster