From: Bastian Dehn Date: Sat, 14 Feb 2026 08:44:47 +0000 (+0100) Subject: rename read stdin method X-Git-Tag: 1.3.12^2~22 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=44e78b3b6539cf3c026f99278c2e41c5cdc0f8f1;p=feierabend.git rename read stdin method --- 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);