함수명 : tzset
헤더 파일 : <time.h>
함수 프로토타입 : void tzset(void);
기능 : UNIX 운영체제와의 시간 호환성
매개변수 : 매개변수 없음
반환값 : 반환값 없음
프로그램 예: UNIX 시간 호환성 구현
#include<stdio.h>#include<time.h>intmain(void){time_ttd;if(putenv(TZ=PST8PDT)==-1){//환경 변수를 설정하고 성공 여부 확인 printf(Unabletosetz n );return0;}tzset();//UNIX 시간 호환 시간 설정(&td);printf(Currenttime=%sn,asctime(localtime(&td)));return0;}
실행 결과
현재시간=TueJun1606:32:062020