Some code clean up, started work on functions to insert text, but they're incomplete.

This commit is contained in:
2022-07-01 20:59:22 +00:00
parent 0f2c6fe9ed
commit 4fa7438a97
3 changed files with 73 additions and 22 deletions
+2 -1
View File
@@ -32,7 +32,7 @@ int main(int argc, char** argv) {
printf("From string index %d: '%s' (string length is %d)\n", index, characters, TStringLength(string));
printf("And one English character: '%s'\n", glyph);
printf("Full string: '%s'\n", TStringGetString(string));
//printf("Full string: '%s'\n", TStringGetString(string));
TStringPrintDetails(string);
//fgets(glyph, 10, stdin);
@@ -40,4 +40,5 @@ int main(int argc, char** argv) {
//glyph[strlen(glyph) - 1] = 0;
//printf("Width %d byte(s).\n", GetGlyphByteWidth(glyph));
TStringFree(string);
}