summaryrefslogtreecommitdiff
path: root/include/libwapcaplet/libwapcaplet.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libwapcaplet/libwapcaplet.h')
-rw-r--r--include/libwapcaplet/libwapcaplet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libwapcaplet/libwapcaplet.h b/include/libwapcaplet/libwapcaplet.h
index eab1898..212b928 100644
--- a/include/libwapcaplet/libwapcaplet.h
+++ b/include/libwapcaplet/libwapcaplet.h
@@ -156,7 +156,7 @@ extern lwc_error lwc_string_caseless_isequal(lwc_string *str1,
* in future. Any code relying on it currently should be
* modified to use ::lwc_string_length if possible.
*/
-extern const char *lwc_string_data(lwc_string *str);
+extern const char *lwc_string_data(const lwc_string *str);
/**
* Retrieve the data length for an interned string.
@@ -164,7 +164,7 @@ extern const char *lwc_string_data(lwc_string *str);
* @param str The string to retrieve the length of.
* @return The length of \a str.
*/
-extern size_t lwc_string_length(lwc_string *str);
+extern size_t lwc_string_length(const lwc_string *str);
/**
* Retrieve (or compute if unavailable) a hash value for the content of the string.