From 44e78b3b6539cf3c026f99278c2e41c5cdc0f8f1 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 14 Feb 2026 09:44:47 +0100 Subject: [PATCH] rename read stdin method --- src/xml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xml.c b/src/xml.c index 1dbea95..b41cbc6 100644 --- a/src/xml.c +++ b/src/xml.c @@ -57,7 +57,7 @@ void shrink_mem(size_t readed, memFile* mem) mem->data = tmpmem; } -void readStdInIntoMemory(memFile* mem) +void read_stdin_into_memory(memFile* mem) { char* buf = malloc(sizeof(char)); @@ -352,7 +352,7 @@ void add_entry(const char* date, uint8_t end_min) { memFile* fileContent = init_memFile(); - readStdInIntoMemory(fileContent); + read_stdin_into_memory(fileContent); char* saldostr = malloc(sizeof(char) * MAX_STRING_LENGTH); -- 2.47.3