Added a way to delete a range of characters at any index and count.

This commit is contained in:
2022-07-05 19:32:58 -05:00
parent 5b5036b996
commit 0a61197cb6
3 changed files with 65 additions and 0 deletions
+1
View File
@@ -14,6 +14,7 @@ void TStringFree(TString* string);
void TStringPrintDetails(const TString* string, int statsOnly);
void TStringInsertText(const char* text, int index, TString* string);
void TStringPop(char buffer[8], TString* string);
void TStringRemoveRange(int startIndex, int count, TString* string);
char* TStringGetString(const TString* string);
int TStringLength(const TString* string);