Compare commits
No commits in common. "2b162f532ffa61e9990bd24eb69de9a4a0936b3e" and "4acaefdd42155604753565c4ba0140fe018e3fe6" have entirely different histories.
2b162f532f
...
4acaefdd42
2
Makefile
2
Makefile
|
@ -36,7 +36,7 @@ edit:
|
||||||
nvim $(PLF) Makefile $(LLST) src/test.c
|
nvim $(PLF) Makefile $(LLST) src/test.c
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf *.o debugOut src/*.gch *.csv *.ics
|
rm -rf *.o debugOut src/*.gch
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -15,13 +15,15 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#define ctime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
|
|
||||||
|
_WIN32 #define ctime_r(T, Tm)(localtime_s(Tm, T) ? NULL : Tm)
|
||||||
#define localtime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
|
#define localtime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
|
||||||
#endif /* ifdef _WIN32 */
|
#endif /* ifdef _WIN32 */
|
||||||
|
|
||||||
const unsigned int intervalLen = 45; // min
|
const unsigned int intervalLen = 45; // min
|
||||||
const unsigned int pauseLen = 10; //
|
const unsigned int pauseLen = 10; //
|
||||||
|
|
||||||
const char taskFormat[] =
|
const char taskFormat[] =
|
||||||
"Task { %.64s = {\n created={%lu},\n deadline={%lu},\n "
|
"Task { %.64s = {\n created={%lu},\n deadline={%lu},\n "
|
||||||
|
|
Loading…
Reference in New Issue