Hi Dora,
to check if we are in DST you can use localtime () function: it returns a tm struct whose tm_isdst field is true if we are in daylight saving time. Copy these lines in interactive window and execute them, next you can see in the debug window the result and examine in variables window the content of struct fields.
#include <ansi_c.h>
#include <utility.h>
static long now;
static struct tm *tm;
time (&now);
tm = localtime (&now);
DebugPrintf ("Are we in DST? %s\n", tm->tm_isdst ? "Yes" : "No");
On the other hand, depending on your needs you may want to consider Timer () function as the source of your program timing: the value returned bu this function does not follow DST changings, since it counts actual seconds from program start. It rolls over only every 49 days and some but it remains consistent even after rollover, so it may be a possible reference value for you.