最終更新:2021-05-31 (月) 09:39:44 (1060d)  

strftime
Top / strftime

strftime - 日付および時刻の文字列への変換

https://linuxjm.osdn.jp/html/LDP_man-pages/man3/strftime.3.html

メモ

    time_t t = time(NULL);
    struct tm *tm = localtime(&t);
    char s[64];
    strftime(s, sizeof(s), "%c", tm);

関連