suitcase

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

caldate.h (298B)


      1 #ifndef CALDATE_H
      2 #define CALDATE_H
      3 
      4 struct caldate {
      5   long year;
      6   int month;
      7   int day;
      8 } ;
      9 
     10 extern unsigned int caldate_fmt();
     11 extern unsigned int caldate_scan();
     12 
     13 extern void caldate_frommjd();
     14 extern long caldate_mjd();
     15 extern void caldate_normalize();
     16 
     17 extern void caldate_easter();
     18 
     19 #endif