diff options
author | Chris Robinson <[email protected]> | 2016-02-24 04:53:32 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-02-24 04:53:32 -0800 |
commit | b6824ca7168d20e7aada4b45a32aa93f48fc689c (patch) | |
tree | 2bb03d869200b65926c876f2d74cebe4db4f007d /Alc/alstring.h | |
parent | d04970e568de8747a152db1ab036bbbfbf70f7f1 (diff) |
Add and use a copy-range string function
Diffstat (limited to 'Alc/alstring.h')
-rw-r--r-- | Alc/alstring.h | 1 |
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); |