jdate (2) --- take month, day, and year and return day-of-year 03/23/80 _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n integer function jdate (month, day, year) integer month, day, year Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Jdate' is used to determine the Julian date corresponding to a given month, day, and year. (For example, January first of any year has Julian date 1; December 31st might have Julian date 365 or 366, depending on whether the given year is a leap year or not.) The function return is the Julian date calculated. _I_m_p_l_e_m_e_n_t_a_t_i_o_n 'Jdate' simply adds up the number of days in all months before the month given, then adds the number of days given. If the year specified is a leap year, February is given 29 days instead of the usual 28. _S_e_e _A_l_s_o date (1), wkday (2), date (2) jdate (2) - 1 - jdate (2)