Fix doc on UTF8 functions.
authorScott Cantor <cantor.2@osu.edu>
Wed, 15 May 2013 21:24:32 +0000 (21:24 +0000)
committerScott Cantor <cantor.2@osu.edu>
Wed, 15 May 2013 21:24:32 +0000 (21:24 +0000)
xmltooling/unicode.h

index a2db686..eb842c4 100644 (file)
@@ -56,7 +56,7 @@ namespace xmltooling {
      *
      * @param src           the 16-bit string to transcode
      * @param use_malloc    true iff the result should be allocated with malloc, false to use new
-     * @return      a UTF-8 string allocated by the Xerces memory manager
+     * @return      a UTF-8 string allocated by new or malloc
      */
     extern XMLTOOL_API char* toUTF8(const XMLCh* src, bool use_malloc=false);
 
@@ -65,7 +65,7 @@ namespace xmltooling {
      *
      * @param src           the UTF-8 string to transcode
      * @param use_malloc    true iff the result should be allocated with malloc, false to use new
-     * @return      a 16-bit Unicode string allocated by the Xerces memory manager
+     * @return      a 16-bit Unicode string allocated by new or malloc
      */
     extern XMLTOOL_API XMLCh* fromUTF8(const char* src, bool use_malloc=false);