From 70d69c686d657be26c94e176b002f7f754d4cb19 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 22 Dec 2011 10:24:04 +0000 Subject: Move dom_string data accessing functions to public header. svn path=/trunk/libdom/; revision=13322 --- include/dom/core/string.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'include/dom') diff --git a/include/dom/core/string.h b/include/dom/core/string.h index 1ff4f75..31ee54c 100644 --- a/include/dom/core/string.h +++ b/include/dom/core/string.h @@ -44,6 +44,16 @@ uint32_t dom_string_rindex(dom_string *str, uint32_t chr); /* Get the length, in characters, of a dom string */ uint32_t dom_string_length(dom_string *str); +/** + * Get the raw character data of the dom_string. + * @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); + +/* Get the byte length of this dom_string */ +size_t dom_string_byte_length(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 */ -- cgit v1.2.3