日付を1年の先頭からの日数(julian day)に変換する。
Convert a date to
the number of days from the beginning of a year (julian day).
◆形式(Format)
#include <mytime.h>
inline int calculate_jday(const int year,const int month,const int day)
◆引数(Arguments)
year
計算の対象とする日付の年(西暦4桁)。
The year (4-digits in A. D.) of the target date.
month
計算の対象とする日付の月。
The month of the target date.
day
計算の対象とする日付の日。
The day of the target date.
◆戻り値(Return value)
year年month月day日に対応するjulian day
(1月1日を1とする年内の通し日数)。
The julian day (tbhe number of days from the beginning of the year)
corresponding to the given year, month, and day.