]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libcalendar/calendar.3
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libcalendar / calendar.3
1 .\" Copyright (c) 1997 Wolfgang Helbig
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd November 29, 1997
28 .Dt CALENDAR 3
29 .Os
30 .Sh NAME
31 .Nm easterg ,
32 .Nm easterog ,
33 .Nm easteroj ,
34 .Nm gdate ,
35 .Nm jdate ,
36 .Nm ndaysg ,
37 .Nm ndaysj ,
38 .Nm week ,
39 .Nm weekday
40 .Nd Calendar arithmetic for the Christian era
41 .Sh LIBRARY
42 .Lb libcalendar
43 .Sh SYNOPSIS
44 .In calendar.h
45 .Ft struct date *
46 .Fn easterg "int year" "struct date *dt"
47 .Ft struct date *
48 .Fn easterog "int year" "struct date *dt"
49 .Ft struct date *
50 .Fn easteroj "int year" "struct date *dt"
51 .Ft struct date *
52 .Fn gdate "int nd" "struct date *dt"
53 .Ft struct date *
54 .Fn jdate "int nd" "struct date *dt"
55 .Ft int
56 .Fn ndaysg "struct date *dt"
57 .Ft int
58 .Fn ndaysj "struct date *dt"
59 .Ft int
60 .Fn week "int nd" "int *year"
61 .Ft int
62 .Fn weekday "int nd"
63 .Sh DESCRIPTION
64 These functions provide calendar arithmetic for a large range of years,
65 starting at March 1st, year zero (i.e., 1 B.C.) and ending way beyond
66 year 100000.
67 .Pp
68 Programs should be linked with
69 .Fl lcalendar .
70 .Pp
71 The functions
72 .Fn easterg ,
73 .Fn easterog
74 and
75 .Fn easteroj
76 store the date of Easter Sunday into the structure pointed at by
77 .Fa dt
78 and return a pointer to this structure.
79 The function
80 .Fn easterg
81 assumes Gregorian Calendar (adopted by most western churches after 1582) and
82 the functions
83 .Fn easterog
84 and
85 .Fn easteroj
86 compute the date of Easter Sunday according to the orthodox rules
87 (Western churches before 1582, Greek and Russian Orthodox Church
88 until today).
89 The result returned by
90 .Fn easterog
91 is the date in Gregorian Calendar, whereas
92 .Fn easteroj
93 returns the date in Julian Calendar.
94 .Pp
95 The functions
96 .Fn gdate ,
97 .Fn jdate ,
98 .Fn ndaysg
99 and
100 .Fn ndaysj
101 provide conversions between the common "year, month, day" notation
102 of a date and the "number of days" representation, which is better suited
103 for calculations.
104 The days are numbered from March 1st year 1 B.C., starting
105 with zero, so the number of a day gives the number of days since March 1st,
106 year 1 B.C.
107 The conversions work for nonnegative day numbers only.
108 .Pp
109 The
110 .Fn gdate
111 and
112 .Fn jdate
113 functions
114 store the date corresponding to the day number
115 .Fa nd
116 into the structure pointed at by
117 .Fa dt
118 and return a pointer to this structure.
119 .Pp
120 The
121 .Fn ndaysg
122 and
123 .Fn ndaysj
124 functions
125 return the day number of the date pointed at by
126 .Fa dt .
127 .Pp
128 The
129 .Fn gdate
130 and
131 .Fn ndaysg
132 functions
133 assume Gregorian Calendar after October 4, 1582 and Julian Calendar before,
134 whereas
135 .Fn jdate
136 and
137 .Fn ndaysj
138 assume Julian Calendar throughout.
139 .Pp
140 The two calendars differ by the definition of the leap year.
141 The
142 Julian Calendar says every year that is a multiple of four is a
143 leap year.
144 The Gregorian Calendar excludes years that are multiples of
145 100 and not multiples of 400.
146 This means the years 1700, 1800, 1900, 2100 are not leap years
147 and the year 2000 is
148 a leap year.
149 The new rules were inaugurated on October 4, 1582 by deleting ten
150 days following this date.
151 Most catholic countries adopted the new
152 calendar by the end of the 16th century, whereas others stayed with
153 the Julian Calendar until the 20th century.
154 The United Kingdom and
155 their colonies switched on September 2, 1752.
156 They already had to
157 delete 11 days.
158 .Pp
159 The function
160 .Fn week
161 returns the number of the week which contains the day numbered
162 .Fa nd .
163 The argument
164 .Fa *year
165 is set with the year that contains (the greater part of) the week.
166 The weeks are numbered per year starting with week 1, which is the
167 first week in a year that includes more than three days of the year.
168 Weeks start on Monday.
169 This function is defined for Gregorian Calendar only.
170 .Pp
171 The function
172 .Fn weekday
173 returns the weekday (Mo = 0 ..\& Su = 6) of the day numbered
174 .Fa nd .
175 .Pp
176 The structure
177 .Fa date
178 is defined in
179 .In calendar.h .
180 It contains these fields:
181 .Bd -literal -offset indent
182 int y;          /\(** year (0000 - ????) \(**/
183 int m;          /\(** month (1 - 12) \(**/
184 int d;          /\(** day of month (1 - 31) \(**/
185 .Ed
186 .Pp
187 The year zero is written as "1 B.C." by historians and "0" by astronomers
188 and in this library.
189 .Sh SEE ALSO
190 .Xr ncal 1 ,
191 .Xr strftime 3
192 .Sh STANDARDS
193 The week number conforms to ISO 8601: 1988.
194 .Sh HISTORY
195 The
196 .Nm calendar
197 library first appeared in
198 .Fx 3.0 .
199 .Sh AUTHORS
200 This manual page and the library was written by
201 .An Wolfgang Helbig Aq helbig@FreeBSD.org .
202 .Sh BUGS
203 The library was coded with great care so there are no bugs left.