diff options
Diffstat (limited to 'test.cc')
-rw-r--r-- | test.cc | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#include "def.h" + + +int main() +{ + char ct[sizeHHMM+TB]; + long theTime = DT::lNow(); + + printf("lNow = '%s'; daylight %d; timezone %ld hours\n", DT::int2Hhmm(theTime, ct), daylight, timezone/tfSecondsPerHour); + + return 0; +} + |