This commit is contained in:
2026-08-31 22:49:42 +08:00
parent 109e8af3d5
commit 4e5ae52e54
35 changed files with 3606 additions and 22 deletions
+4
View File
@@ -60,6 +60,7 @@ c_err_t c_StringBuffer_RemoveAt(c_StringBuffer_t* self, c_size_t index, c_size_t
void c_StringBuffer_Clear(c_StringBuffer_t* self);
c_err_t c_StringBuffer_AppendChar(c_StringBuffer_t* self, char ch);
c_err_t c_StringBuffer_AppendStr(c_StringBuffer_t* self, const char* string);
c_err_t c_StringBuffer_PrependStr(c_StringBuffer_t* self, const char* string);
c_err_t c_StringBuffer_InsertStrAt(c_StringBuffer_t* self, const char* string, c_size_t index);
@@ -135,4 +136,7 @@ c_err_t c_StringBuffer_strtoul(const c_StringBuffer_t* self, c_size_t start_inde
*/
c_err_t c_StringBuffer_SetLength(c_StringBuffer_t* sb, c_size_t new_length);
c_err_t c_StringBuffer_PopBack(c_StringBuffer_t* self);
#endif /*INCLUDED_C_STRINGBUFFER_H*/