From c4beb89104cdd44f0ea85c546d4bc275397e92f9 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Tue, 7 Jan 2025 21:13:34 -0500 Subject: [PATCH] Wrap text in a slghtly nicer way --- 01_text_adventure/log.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/01_text_adventure/log.c b/01_text_adventure/log.c index 2a4d85f..a9611ef 100644 --- a/01_text_adventure/log.c +++ b/01_text_adventure/log.c @@ -30,14 +30,17 @@ Log *create_log(void) { void push_line_to_log(Log* log, char* line) { int line_length = MIN(strlen(line), LINE_LENGTH); + if (line_length == LINE_LENGTH) { + while (line[line_length] != ' ') line_length--; + } log->lines = realloc(log->lines, (log->line_count + 1) * sizeof(char*)); log->lines[log->line_count] = malloc(line_length + 1); memcpy(log->lines[log->line_count], line, line_length); log->lines[log->line_count][line_length] = '\0'; log->line_count++; - if (strlen(line) > LINE_LENGTH) { - push_line_to_log(log, line + LINE_LENGTH); + if (strlen(line) > line_length) { + push_line_to_log(log, line + line_length + 1); } }