Use `bool' throughout, where relevant.
[pspp-builds.git] / lib / julcal / julcal.h
1 /* 
2    Declarations for Julian date routines.
3
4    Modified BLP 8/28/95, 9/26/95, 12/15/99 for PSPP.
5  */
6
7 #if !julcal_h
8 #define julcal_h 1
9
10 long calendar_to_julian (int y, int m, int d);
11 void julian_to_calendar (long jd, int *y, int *m, int *d);
12 int julian_to_wday (long jd);
13 int julian_to_jday (long jd);
14
15 #endif /* !julcal_h */