summaryrefslogtreecommitdiff
path: root/include/dom/core
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-12-22 14:16:52 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-12-22 14:16:52 +0000
commitf5f3e8e99e6085ee61373af500645bb202045f9b (patch)
treec743138dee41593341c57f8ccd9a00422743b304 /include/dom/core
parentb8adea2079845494bb7c8c6946bdaadc57a4d271 (diff)
downloadlibdom-f5f3e8e99e6085ee61373af500645bb202045f9b.tar.gz
libdom-f5f3e8e99e6085ee61373af500645bb202045f9b.tar.bz2
Fix comparison of interned and non-interned dom strings. Constify dom string data accessers.
svn path=/trunk/libdom/; revision=13327
Diffstat (limited to 'include/dom/core')
-rw-r--r--include/dom/core/string.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dom/core/string.h b/include/dom/core/string.h
index 31ee54c..9d37547 100644
--- a/include/dom/core/string.h
+++ b/include/dom/core/string.h
@@ -49,10 +49,10 @@ uint32_t dom_string_length(dom_string *str);
* @note: This function is just provided for the convenience of accessing the
* raw C string character, no change on the result string is allowed.
*/
-const char *dom_string_data(dom_string *str);
+const char *dom_string_data(const dom_string *str);
/* Get the byte length of this dom_string */
-size_t dom_string_byte_length(dom_string *str);
+size_t dom_string_byte_length(const dom_string *str);
/* Get the UCS-4 character at position index, the index should be in
* [0, length), and length can be get by calling dom_string_length