ds: string: update to_string(); remove legacy b_stream callbacks

b_string will no longer implement the b_stream interface. writing to a string
via b_stream will now be handled by b_stringstream.
This commit is contained in:
2025-10-24 12:39:19 +01:00
parent 0fed0d2718
commit d5136239a8
2 changed files with 1 additions and 128 deletions

View File

@@ -81,7 +81,6 @@ static inline b_status b_string_tolower(b_string *str)
{
return b_string_transform(str, tolower);
}
BLUE_API b_status b_string_open_stream(b_string *str, struct b_stream **out);
BLUE_API b_status b_string_append_c(b_string *dest, char c);
BLUE_API b_status b_string_append_wc(b_string *dest, b_wchar c);