関数名 Function name |
機能・用途 Purpose |
humanTime2tm | struct humanTime型構造体をstruct tm型に変換する。 Convert a struct humanTime-type structure to struct tm-type. |
tm2humanTime | struct tm型構造体をstruct humanTime型に変換する。 Convert a struct tm-type structure to struct humanTime-type. |
humanTime2sec | struct humanTime型構造体を
実数値(指定した基準日時からの経過秒数)に変換する。 Convert a struct humanTime-type structure to a real number that represents the elapsed time (sec) from a reference time specified by the user. |
humanTime2sec_2000 | struct humanTime型構造体を
実数値(西暦2000年1月1日0:00:00からの経過秒数)に変換する。 Convert a struct humanTime-type structure to a real number that represents the elapsed time (sec) from 0:00:00 on Jan. 1, 2000. |
correct_humanTime | struct humanTime型構造体を正しい値に修正する。 Correct the value of a struct humanTime-type structure. |
humanTime_plus_sec | struct humanTime型構造体が表す日付・時刻に指定した秒数を加算する。 Add a specified time length (s) to a date-time expressed by a struct humanTime-type structure. |
timecmp | 2つのstruct humanTime型構造体が表す日付・時刻の大小比較を行う。 Compare two date-times represented by struct humanTime-type structures. |
timeStr2time | 日付・時刻を表す文字列をstruct humanTime型構造体に変換する。
日付を表す文字列を「年/月/日」で、
時刻を表す文字列を「時:分:秒」で与えるバージョン。 Convert strings that represent date and time to a struct humanTime-type structure; the strings for the date and time are given in “year/month/day” and “hour:min:sec” formats, respectively. |
timeStr2time2 | 日付・時刻を表す文字列をstruct humanTime型構造体に変換する。
文字列を「年/月/日 時:分:秒」で与えるバージョン。 Convert strings that represent date and time to a struct humanTime-type structure; the string for the date and time is given in “year/month/day hour:min:sec” format. |
timeStr2time3 | 日付・時刻を表す文字列をstruct humanTime型構造体に変換する。
文字列を「年,月,日,時,分,秒」で与えるバージョン。 Convert strings that represent date and time to a struct humanTime-type structure; the string for the date and time is given in “year,month,day,hour,min,sec” format. |
jday2monthday | 1年の先頭からの日数(julian day)を月・日に変換する。 Convert the number of days from the beginning of a year (julian day) to month and day. |
calculate_jday | 日付を1年の先頭からの日数(julian day)に変換する。 Convert a date to the number of days from the beginning of a year (julian day). |
get_current_date_time | 現在の日付・時刻を取得する。 Get the current date and time. |