On Saturday 26 January 2002 21:30, you wrote:
> OK - this tiny program
>
> ---------------------
> #include <sys/time.h>
>
> main() {
> struct tm *tp;
>
> tp = localtime();
> tp->tm_isdst;
> }
> ---------------------
What exactly is localtime() supposed to do? As far as i can tell
localtime takes a parameter of type time_t. What about
tp = localtime(time());