date_difference() public static method

The method computes the difference between two Julian dates.
public static date_difference ( int dayA, int monthA, int yearA, int dayB, int monthB, int yearB ) : int
dayA int The integer parameter gives the day of month /// of the first date. ///
monthA int The integer parameter gives the Julian /// month of the first date. ///
yearA int The integer parameter gives the Julian /// year of the first date. ///
dayB int The integer parameter gives the day of month /// of the second date. ///
monthB int The integer parameter gives the Julian /// month of the second date. ///
yearB int The integer parameter gives the Julian /// year of the second date. ///
return int
 public static int days_remaining(int day, int month, int year)
 {
     return(CCJulianCalendar.date_difference(day, month, year, 31, 12, year));
 }
 public static int day_number(int day, int month, int year)
 {
     return(CCJulianCalendar.date_difference(31, 12, year - 1, day, month, year));
 }