函數名: tzset
頭檔:<time.h>
函數原型: void tzset(void);
功 能: 對UNIX作業系統的時間相容性
參數: 沒有參數
傳回值:沒有傳回值
程序例:實現UNIX時間相容
#include<stdio.h>#include<time.h>intmain(void){time_ttd;if(putenv(TZ=PST8PDT)==-1){//設定環境變量,並判斷是否成功printf(Unab letosettzn);return0;}tzset();//設定UNIX時間相容time(&td);printf(Currenttime=%sn,asctime(localtime(&td)));return0;}
運行結果
Currenttime=TueJun1606:32:062020