Added a function to get a range of characters from the TString object.

This commit is contained in:
2022-07-05 23:33:44 -05:00
parent ce4878e103
commit b1d79d7b7e
3 changed files with 54 additions and 5 deletions
+1
View File
@@ -16,6 +16,7 @@ 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);
char* TStringGetStringRange(int startIndex, int count, const TString* string);
int TStringLength(const TString* string);