Jürgen Büchel 2024-12-16 09:41:52 +01:00
commit 503182c0ca
1 changed files with 3 additions and 2 deletions

View File

@ -15,14 +15,15 @@
#include <string.h>
#include <time.h>
#ifdef _WIN32
_WIN32 #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 uint intervalLen = 45; // min
const uint pauseLen = 10; //
const unsigned int intervalLen = 45; // min
const unsigned int pauseLen = 10; //
const char taskFormat[] =
"Task { %.64s = {\n created={%lu},\n deadline={%lu},\n "