2011-06-14 52 views
0

我想知道localtime()函數是否可以在Linux上運行?我雖然有針對另一個命令,但我不記得現在time.h庫defult函數C++

顯然我的任務要在Linux上工作或不計數標誌和我的父母不知道如何使用它

+1

爲什麼不呢? – littleadv 2011-06-14 05:22:58

+3

你的任務是什麼?對於不知道linux c頭文件也是不好的壞父母。 – 2011-06-14 05:27:29

+0

@Captain長頸鹿:不知道某些Linux功能是否工作不會使任何人的父母或任何人都不好。 – 2011-06-14 05:41:32

回答

1

localtime()函數在Linux上運行。檢查參考here

3

根據this localtime()應該可以很好的與Linux一起工作。

從鏈接:

#include <time.h> 
    //... 
    struct tm *localtime(const time_t *timep); 
    struct tm *localtime_r(const time_t *timep, struct tm *result); 

如果該聲明是一樣的本地時間(),你問(我假設它是),那麼你應該就好用它在基於Linux的機器。