Compare commits

...

2 Commits

Author SHA1 Message Date
ketrptr 2b162f532f Merge branch 'master' of https://gitea.fhgr.ch/schurtisimon/StudyPlanner
modified:   src/planner.c
2024-12-16 09:41:44 +01:00
ketrptr e4b1580d1e modified: Makefile
modified:   src/planner.c
2024-12-16 09:40:51 +01:00
2 changed files with 3 additions and 5 deletions

View File

@ -36,7 +36,7 @@ edit:
nvim $(PLF) Makefile $(LLST) src/test.c
clean:
rm -rf *.o debugOut src/*.gch
rm -rf *.o debugOut src/*.gch *.csv *.ics

View File

@ -15,15 +15,13 @@
#include <string.h>
#include <time.h>
#ifdef _WIN32
_WIN32 #define ctime_r(T, Tm)(localtime_s(Tm, T) ? NULL : Tm)
#define ctime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
#define localtime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
#endif /* ifdef _WIN32 */
const unsigned int intervalLen = 45; // min
const unsigned int pauseLen = 10; //
const unsigned int pauseLen = 10; //
const char taskFormat[] =
"Task { %.64s = {\n created={%lu},\n deadline={%lu},\n "