From 128ae19fdb086a1c06bf9a7073f1e8eff9409122 Mon Sep 17 00:00:00 2001 From: Jonas Zitzmann Date: Fri, 9 Feb 2024 17:41:24 +0100 Subject: [PATCH] refactoring: add file description --- src/convert_time.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/convert_time.c b/src/convert_time.c index 62e5400..24267ed 100644 --- a/src/convert_time.c +++ b/src/convert_time.c @@ -1,5 +1,7 @@ #include "convert_time.h" +// This file has a lot of functions to convert time units + // Converts Seconds to Minutes double converter_sec_to_min(double sec){ double mins = sec / 60;