From 99d833ef7748aec834d63d1fa4f3367028c1d474 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 14 Feb 2026 09:38:13 +0100 Subject: [PATCH] rename init time acount --- src/feierabendxml.c | 2 +- src/xml.c | 2 +- src/xml.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/feierabendxml.c b/src/feierabendxml.c index c59a08c..e293c7a 100644 --- a/src/feierabendxml.c +++ b/src/feierabendxml.c @@ -13,7 +13,7 @@ int main(int argc, char* argv[]) } if (strcmp(argv[1], "init") == 0) { - initTimeAcount(); + init_time_acount(); return 0; } diff --git a/src/xml.c b/src/xml.c index e318994..4c943b9 100644 --- a/src/xml.c +++ b/src/xml.c @@ -82,7 +82,7 @@ void readStdInIntoMemory(memFile* mem) buf = NULL; } -void initTimeAcount() +void init_time_acount() { xmlChar* xmlElemName = NULL; xmlChar* xmlElemContent = NULL; diff --git a/src/xml.h b/src/xml.h index c34b7fd..b83328d 100644 --- a/src/xml.h +++ b/src/xml.h @@ -7,7 +7,7 @@ typedef struct { size_t size; } memFile; -void initTimeAcount(); +void init_time_acount(); void createEntry(uint8_t begin_hour, uint8_t begin_min, uint8_t end_hour, -- 2.47.3