Added a 'pop' function to remove the last glyph from the string and store it into a buffer.

This commit is contained in:
2022-07-02 23:30:13 -05:00
parent 7c20eef8d1
commit 338835b998
3 changed files with 41 additions and 19 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ void TStringGetGlyph(int index, char buffer[8], const TString* string);
void TStringFree(TString* string);
void TStringPrintDetails(const TString* string);
void TStringInsertText(const char* text, int index, TString* string);
//void TStringRemove(int index, TString* string);
void TStringPop(char buffer[8], TString* string);
char* TStringGetString(const TString* string);
int TStringLength(const TString* string);