Fw: GNU Core Utilities Project Page
GNU Core Utilities - 概要 [Savannah]
各種コマンドのC実装がブラウザで見れる。
gitで管理されていて、srcディレクトリにコードがある。
static char const rfc_2822_format[] = "%a, %d %b %Y %H:%M:%S %z";
static char const rfc_3339_format[][32] =
{
"%Y-%m-%d",
"%Y-%m-%d %H:%M:%S%:z",
"%Y-%m-%d %H:%M:%S.%N%:z"
};
static char const iso_8601_format[][32] =
{
"%Y-%m-%d",
"%Y-%m-%dT%H:%M:%S%z",
"%Y-%m-%dT%H:%M:%S,%N%z",
"%Y-%m-%dT%H%z",
"%Y-%m-%dT%H:%M%z"
};
date.cより。メモ。