home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / JULCAL10 / JULCAL.H < prev    next >
C/C++ Source or Header  |  1992-12-21  |  574b  |  31 lines

  1. /* 
  2.     declarations for Julian date routines
  3. */
  4.  
  5. #define JUL_ROME 2299161L
  6. #define JUL_ENGLAND 2361222L
  7.  
  8. extern long jul_transition;
  9.  
  10. #ifdef __STDC__
  11.  
  12. long juldnj (struct tm *bdt, long Transition);
  13. long juldn (struct tm *bdt);
  14. long juldnd (struct tm *bdt, struct tm *Transition_date);
  15.  
  16. struct tm *julcdj (long JD, long Transition);
  17. struct tm *julcd (long JD);
  18. struct tm *julcdd (long JD, struct tm *Transition_date);
  19.  
  20. #else
  21.  
  22. long juldnj ();
  23. long juldn ();
  24. long juldnd ();
  25.  
  26. struct tm *julcdj ();
  27. struct tm *julcd ();
  28. struct tm *julcdd ();
  29.  
  30. #endif
  31.