aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alstring.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-02-24 04:53:32 -0800
committerChris Robinson <[email protected]>2016-02-24 04:53:32 -0800
commitb6824ca7168d20e7aada4b45a32aa93f48fc689c (patch)
tree2bb03d869200b65926c876f2d74cebe4db4f007d /Alc/alstring.h
parentd04970e568de8747a152db1ab036bbbfbf70f7f1 (diff)
Add and use a copy-range string function
Diffstat (limited to 'Alc/alstring.h')
-rw-r--r--Alc/alstring.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Alc/alstring.h b/Alc/alstring.h
index f53d2c57..6167f5ce 100644
--- a/Alc/alstring.h
+++ b/Alc/alstring.h
@@ -32,6 +32,7 @@ int al_string_cmp_cstr(const_al_string str1, const al_string_char_type *str2);
void al_string_copy(al_string *str, const_al_string from);
void al_string_copy_cstr(al_string *str, const al_string_char_type *from);
+void al_string_copy_range(al_string *str, const al_string_char_type *from, const al_string_char_type *to);
void al_string_append_char(al_string *str, const al_string_char_type c);
void al_string_append_cstr(al_string *str, const al_string_char_type *from);