Added a function to dump some debug details about the TString.
This commit is contained in:
@@ -13,10 +13,13 @@
|
||||
typedef struct __tstring TString;
|
||||
|
||||
TString* TStringCreate(void);
|
||||
|
||||
void TStringAppendText(const char* text, TString* string);
|
||||
char* TStringGetString(const TString* string);
|
||||
void TStringGetGlyph(int index, char buffer[8], const TString* string);
|
||||
void TStringFree(TString* string);
|
||||
void TStringPrintDetails(const TString* string);
|
||||
char* TStringGetString(const TString* string);
|
||||
int TStringLength(const TString* string);
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user