This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/tzset.c

24 lines
461 B
C
Raw Permalink Normal View History

#include <stdio.h>
#include <env.h>
#include <time.h>
void print_zone()
{
char *tz;
printf( "TZ: %s\n", (tz = getenv( "TZ" ))
? tz : "default EST5EDT" );
printf( " daylight: %d\n", daylight );
printf( " timezone: %ld\n", timezone );
printf( " time zone names: %s %s\n",
tzname[0], tzname[1] );
}
void main()
{
print_zone();
setenv( "TZ", "PST8PDT", 1 );
tzset();
print_zone();
}