original | 変換したい日付・時刻が保存されているstruct humanTime型構造体。 A struct humanTime-type structure that posesses the date and time to be converted. |
converted | 変換した値の代入先。
宣言しただけのstruct tm型構造体に&を付けて与える。 Memory into which the converted value is to be inserted. Give an empty struct tm-type structure with &. |
sec_decimal | 変換によって失われる秒の小数部の代入先。
宣言しただけのdouble型変数に&を付けて与える。 Memory into which the decimal part of the second, which will be lost by the conversion, is to be inserted. Give an empty double-type variable with &. |