Diff for /embedaddon/libxml2/include/libxml/dict.h between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2013/07/22 01:22:22 version 1.1.1.3, 2014/06/15 19:53:38
Line 11 Line 11
 #ifndef __XML_DICT_H__  #ifndef __XML_DICT_H__
 #define __XML_DICT_H__  #define __XML_DICT_H__
   
   #include <limits.h>
 #include <libxml/xmlversion.h>  #include <libxml/xmlversion.h>
 #include <libxml/tree.h>  #include <libxml/tree.h>
   
Line 34  XMLPUBFUN int XMLCALL  xmlInitializeDict(void); Line 35  XMLPUBFUN int XMLCALL  xmlInitializeDict(void);
  */   */
 XMLPUBFUN xmlDictPtr XMLCALL  XMLPUBFUN xmlDictPtr XMLCALL
                         xmlDictCreate   (void);                          xmlDictCreate   (void);
   XMLPUBFUN size_t XMLCALL
                           xmlDictSetLimit (xmlDictPtr dict,
                                            size_t limit);
   XMLPUBFUN size_t XMLCALL
                           xmlDictGetUsage (xmlDictPtr dict);
 XMLPUBFUN xmlDictPtr XMLCALL  XMLPUBFUN xmlDictPtr XMLCALL
                         xmlDictCreateSub(xmlDictPtr sub);                          xmlDictCreateSub(xmlDictPtr sub);
 XMLPUBFUN int XMLCALL  XMLPUBFUN int XMLCALL

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>