blob: 10df0ae8b354750c4129140303d5262652013080 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc98c0622001-12-06 15:16:43 +00002/*
3 * Calendar implementation for busybox
4 *
Eric Andersenc98c0622001-12-06 15:16:43 +00005 * See original copyright at the end of this file
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00008 */
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +01009/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
10 *
11 * Major size reduction... over 50% (>1.5k) on i386.
12 */
13//config:config CAL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020014//config: bool "cal (6.5 kb)"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010015//config: default y
16//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020017//config: cal is used to display a monthly calendar.
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010018
19//applet:IF_CAL(APPLET(cal, BB_DIR_USR_BIN, BB_SUID_DROP))
20
21//kbuild:lib-$(CONFIG_CAL) += cal.o
Manuel Novoa III cad53642003-03-19 09:13:01 +000022
23/* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */
24/* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream
25 * BB_AUDIT BUG: version in util-linux seems to be broken as well. */
26/* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */
27
Pere Orga34425382011-03-31 14:43:25 +020028//usage:#define cal_trivial_usage
29//usage: "[-jy] [[MONTH] YEAR]"
30//usage:#define cal_full_usage "\n\n"
31//usage: "Display a calendar\n"
Pere Orga34425382011-03-31 14:43:25 +020032//usage: "\n -j Use julian dates"
33//usage: "\n -y Display the entire year"
34
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000035#include "libbb.h"
Denys Vlasenko9f93d622010-01-24 07:44:03 +010036#include "unicode.h"
Manuel Novoa III b99cb642002-05-29 19:08:41 +000037
Denys Vlasenko10ad6222017-04-17 16:13:32 +020038/* We often use "unsigned" instead of "int", it's easier to div on most CPUs */
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000039
Eric Andersenc98c0622001-12-06 15:16:43 +000040#define THURSDAY 4 /* for reformation */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000041#define SATURDAY 6 /* 1 Jan 1 was a Saturday */
Eric Andersenc98c0622001-12-06 15:16:43 +000042
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000043#define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */
44#define NUMBER_MISSING_DAYS 11 /* 11 day correction */
Eric Andersenc98c0622001-12-06 15:16:43 +000045
46#define MAXDAYS 42 /* max slots in a month array */
47#define SPACE -1 /* used in day array */
48
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000049static const unsigned char days_in_month[] ALIGN1 = {
Manuel Novoa III cad53642003-03-19 09:13:01 +000050 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
Eric Andersenc98c0622001-12-06 15:16:43 +000051};
52
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000053static const unsigned char sep1752[] ALIGN1 = {
Denys Vlasenko6830ade2013-01-15 13:58:01 +010054 1, 2, 14, 15, 16,
Eric Andersenc98c0622001-12-06 15:16:43 +000055 17, 18, 19, 20, 21, 22, 23,
Manuel Novoa III cad53642003-03-19 09:13:01 +000056 24, 25, 26, 27, 28, 29, 30
Eric Andersenc98c0622001-12-06 15:16:43 +000057};
58
Denis Vlasenkoa5254032008-07-22 10:10:13 +000059/* Set to 0 or 1 in main */
60#define julian ((unsigned)option_mask32)
Eric Andersenc98c0622001-12-06 15:16:43 +000061
Eric Andersenaff114c2004-04-14 17:51:38 +000062/* leap year -- account for Gregorian reformation in 1752 */
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000063static int leap_year(unsigned yr)
Manuel Novoa III cad53642003-03-19 09:13:01 +000064{
Denis Vlasenko319f8eb2007-08-13 11:09:30 +000065 if (yr <= 1752)
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000066 return !(yr % 4);
67 return (!(yr % 4) && (yr % 100)) || !(yr % 400);
Manuel Novoa III cad53642003-03-19 09:13:01 +000068}
Manuel Novoa III cad53642003-03-19 09:13:01 +000069
Eric Andersenc98c0622001-12-06 15:16:43 +000070/* number of centuries since 1700, not inclusive */
71#define centuries_since_1700(yr) \
72 ((yr) > 1700 ? (yr) / 100 - 17 : 0)
73
74/* number of centuries since 1700 whose modulo of 400 is 0 */
75#define quad_centuries_since_1700(yr) \
76 ((yr) > 1600 ? ((yr) - 1600) / 400 : 0)
77
78/* number of leap years between year 1 and this year, not inclusive */
79#define leap_years_since_year_1(yr) \
80 ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr))
81
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000082static void center(char *, unsigned, unsigned);
83static void day_array(unsigned, unsigned, unsigned *);
84static void trim_trailing_spaces_and_print(char *);
Manuel Novoa III cad53642003-03-19 09:13:01 +000085
86static void blank_string(char *buf, size_t buflen);
Denis Vlasenko661f6fa2007-07-26 11:12:51 +000087static char *build_row(char *p, unsigned *dp);
Manuel Novoa III cad53642003-03-19 09:13:01 +000088
89#define DAY_LEN 3 /* 3 spaces per day */
90#define J_DAY_LEN (DAY_LEN + 1)
91#define WEEK_LEN 20 /* 7 * 3 - one space at the end */
92#define J_WEEK_LEN (WEEK_LEN + 7)
93#define HEAD_SEP 2 /* spaces between day headings */
Eric Andersenc98c0622001-12-06 15:16:43 +000094
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000095int cal_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010096int cal_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenc98c0622001-12-06 15:16:43 +000097{
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 struct tm zero_tm;
Eric Andersenc98c0622001-12-06 15:16:43 +000099 time_t now;
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000100 unsigned month, year, flags, i;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101 char *month_names[12];
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100102 /* normal heading: */
103 /* "Su Mo Tu We Th Fr Sa" */
104 /* -j heading: */
105 /* " Su Mo Tu We Th Fr Sa" */
Denys Vlasenko19158a82010-03-26 14:06:56 +0100106 char day_headings[ENABLE_UNICODE_SUPPORT ? 28 * 6 : 28];
107 IF_UNICODE_SUPPORT(char *hp = day_headings;)
Eric Andersenc98c0622001-12-06 15:16:43 +0000108 char buf[40];
109
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100110 init_unicode();
111
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000112 flags = getopt32(argv, "jy");
Denis Vlasenkoa5254032008-07-22 10:10:13 +0000113 /* This sets julian = flags & 1: */
114 option_mask32 &= 1;
Eric Andersenc98c0622001-12-06 15:16:43 +0000115 month = 0;
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000116 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000117
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100118 if (!argv[0]) {
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100119 struct tm *ptm;
120
Eric Andersenc98c0622001-12-06 15:16:43 +0000121 time(&now);
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100122 ptm = localtime(&now);
123 year = ptm->tm_year + 1900;
Denis Vlasenkoa5254032008-07-22 10:10:13 +0000124 if (!(flags & 2)) { /* no -y */
Denys Vlasenkodc698bb2010-01-09 19:10:49 +0100125 month = ptm->tm_mon + 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126 }
127 } else {
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100128 if (argv[1]) {
129 if (argv[2]) {
130 bb_show_usage();
131 }
Denys Vlasenkoed910c72010-01-31 00:10:18 +0100132 if (!(flags & 2)) { /* no -y */
133 month = xatou_range(*argv, 1, 12);
134 }
135 argv++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000136 }
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000137 year = xatou_range(*argv, 1, 9999);
Eric Andersenc98c0622001-12-06 15:16:43 +0000138 }
139
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000140 blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000141
142 i = 0;
143 do {
Eric Andersenc98c0622001-12-06 15:16:43 +0000144 zero_tm.tm_mon = i;
Denys Vlasenko86350f82010-01-06 10:18:37 +0100145 /* full month name according to locale */
Eric Andersenc98c0622001-12-06 15:16:43 +0000146 strftime(buf, sizeof(buf), "%B", &zero_tm);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000147 month_names[i] = xstrdup(buf);
Eric Andersenc98c0622001-12-06 15:16:43 +0000148
Manuel Novoa III cad53642003-03-19 09:13:01 +0000149 if (i < 7) {
150 zero_tm.tm_wday = i;
Denys Vlasenko86350f82010-01-06 10:18:37 +0100151 /* abbreviated weekday name according to locale */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152 strftime(buf, sizeof(buf), "%a", &zero_tm);
Denys Vlasenko19158a82010-03-26 14:06:56 +0100153#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100154 if (julian)
155 *hp++ = ' ';
156 {
Denys Vlasenkodc7e5c42011-01-11 13:08:28 +0100157 char *two_wchars = unicode_conv_to_printable_fixedwidth(/*NULL,*/ buf, 2);
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100158 strcpy(hp, two_wchars);
159 free(two_wchars);
160 }
161 hp += strlen(hp);
162 *hp++ = ' ';
163#else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000164 strncpy(day_headings + i * (3+julian) + julian, buf, 2);
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100165#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000166 }
167 } while (++i < 12);
Denys Vlasenko19158a82010-03-26 14:06:56 +0100168 IF_UNICODE_SUPPORT(hp[-1] = '\0';)
Eric Andersenc98c0622001-12-06 15:16:43 +0000169
Manuel Novoa III cad53642003-03-19 09:13:01 +0000170 if (month) {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000171 unsigned row, len, days[MAXDAYS];
172 unsigned *dp = days;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000173 char lineout[30];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000174
Manuel Novoa III cad53642003-03-19 09:13:01 +0000175 day_array(month, year, dp);
Denys Vlasenko327f5502013-11-29 16:45:45 +0100176 len = sprintf(lineout, "%s %u", month_names[month - 1], year);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000177 printf("%*s%s\n%s\n",
Denys Vlasenko69675782013-01-14 01:34:48 +0100178 ((7*julian + WEEK_LEN) - len) / 2, "",
179 lineout, day_headings);
Eric Andersenc98c0622001-12-06 15:16:43 +0000180 for (row = 0; row < 6; row++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000181 build_row(lineout, dp)[0] = '\0';
182 dp += 7;
183 trim_trailing_spaces_and_print(lineout);
184 }
185 } else {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000186 unsigned row, which_cal, week_len, days[12][MAXDAYS];
187 unsigned *dp;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 char lineout[80];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000189
Denys Vlasenko7bb346f2009-10-06 22:09:50 +0200190 sprintf(lineout, "%u", year);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000191 center(lineout,
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100192 (WEEK_LEN * 3 + HEAD_SEP * 2)
193 + julian * (J_WEEK_LEN * 2 + HEAD_SEP
Denys Vlasenko6830ade2013-01-15 13:58:01 +0100194 - (WEEK_LEN * 3 + HEAD_SEP * 2)),
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100195 0
196 );
Manuel Novoa III cad53642003-03-19 09:13:01 +0000197 puts("\n"); /* two \n's */
198 for (i = 0; i < 12; i++) {
199 day_array(i + 1, year, days[i]);
200 }
201 blank_string(lineout, sizeof(lineout));
202 week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN);
203 for (month = 0; month < 12; month += 3-julian) {
204 center(month_names[month], week_len, HEAD_SEP);
205 if (!julian) {
206 center(month_names[month + 1], week_len, HEAD_SEP);
Eric Andersenc98c0622001-12-06 15:16:43 +0000207 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 center(month_names[month + 2 - julian], week_len, 0);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000209 printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000210 if (!julian) {
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000211 printf("%*s%s", HEAD_SEP, "", day_headings);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000212 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000213 bb_putchar('\n');
Manuel Novoa III cad53642003-03-19 09:13:01 +0000214 for (row = 0; row < (6*7); row += 7) {
215 for (which_cal = 0; which_cal < 3-julian; which_cal++) {
216 dp = days[month + which_cal] + row;
217 build_row(lineout + which_cal * (week_len + 2), dp);
218 }
219 /* blank_string took care of nul termination. */
220 trim_trailing_spaces_and_print(lineout);
221 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000222 }
223 }
Eric Andersenc98c0622001-12-06 15:16:43 +0000224
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000225 fflush_stdout_and_exit(EXIT_SUCCESS);
Eric Andersenc98c0622001-12-06 15:16:43 +0000226}
227
228/*
229 * day_array --
230 * Fill in an array of 42 integers with a calendar. Assume for a moment
231 * that you took the (maximum) 6 rows in a calendar and stretched them
232 * out end to end. You would have 42 numbers or spaces. This routine
233 * builds that array for any month from Jan. 1 through Dec. 9999.
234 */
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000235static void day_array(unsigned month, unsigned year, unsigned *days)
Eric Andersenc98c0622001-12-06 15:16:43 +0000236{
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000237 unsigned long temp;
238 unsigned i;
239 unsigned day, dw, dm;
Eric Andersenc98c0622001-12-06 15:16:43 +0000240
Manuel Novoa III cad53642003-03-19 09:13:01 +0000241 memset(days, SPACE, MAXDAYS * sizeof(int));
Eric Andersenc98c0622001-12-06 15:16:43 +0000242
Manuel Novoa III cad53642003-03-19 09:13:01 +0000243 if ((month == 9) && (year == 1752)) {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000244 /* Assumes the Gregorian reformation eliminates
245 * 3 Sep. 1752 through 13 Sep. 1752.
246 */
247 unsigned j_offset = julian * 244;
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000248 size_t oday = 0;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000249
Manuel Novoa III cad53642003-03-19 09:13:01 +0000250 do {
"Vladimir N. Oleynik"676b15e2006-01-30 13:47:19 +0000251 days[oday+2] = sep1752[oday] + j_offset;
252 } while (++oday < sizeof(sep1752));
Eric Andersenc98c0622001-12-06 15:16:43 +0000253
Eric Andersenc98c0622001-12-06 15:16:43 +0000254 return;
255 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000256
257 /* day_in_year
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000258 * return the 1 based day number within the year
Manuel Novoa III cad53642003-03-19 09:13:01 +0000259 */
260 day = 1;
261 if ((month > 2) && leap_year(year)) {
262 ++day;
Eric Andersenc98c0622001-12-06 15:16:43 +0000263 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000264
265 i = month;
266 while (i) {
267 day += days_in_month[--i];
268 }
269
270 /* day_in_week
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000271 * return the 0 based day number for any date from 1 Jan. 1 to
272 * 31 Dec. 9999. Assumes the Gregorian reformation eliminates
273 * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all
274 * missing days.
Manuel Novoa III cad53642003-03-19 09:13:01 +0000275 */
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000276 temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1) + day;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000277 if (temp < FIRST_MISSING_DAY) {
278 dw = ((temp - 1 + SATURDAY) % 7);
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000279 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000280 dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7);
281 }
282
283 if (!julian) {
284 day = 1;
285 }
286
287 dm = days_in_month[month];
288 if ((month == 2) && leap_year(year)) {
289 ++dm;
290 }
291
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000292 do {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000293 days[dw++] = day++;
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000294 } while (--dm);
Eric Andersenc98c0622001-12-06 15:16:43 +0000295}
296
Manuel Novoa III cad53642003-03-19 09:13:01 +0000297static void trim_trailing_spaces_and_print(char *s)
Eric Andersenc98c0622001-12-06 15:16:43 +0000298{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000299 char *p = s;
Eric Andersenc98c0622001-12-06 15:16:43 +0000300
Manuel Novoa III cad53642003-03-19 09:13:01 +0000301 while (*p) {
Eric Andersenc98c0622001-12-06 15:16:43 +0000302 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000303 }
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000304 while (p != s) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000305 --p;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200306 if (!isspace(*p)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000307 p[1] = '\0';
308 break;
309 }
310 }
311
312 puts(s);
Eric Andersenc98c0622001-12-06 15:16:43 +0000313}
314
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000315static void center(char *str, unsigned len, unsigned separate)
Eric Andersenc98c0622001-12-06 15:16:43 +0000316{
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000317 unsigned n = strlen(str);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000318 len -= n;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000319 printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, "");
Eric Andersenc98c0622001-12-06 15:16:43 +0000320}
321
Manuel Novoa III cad53642003-03-19 09:13:01 +0000322static void blank_string(char *buf, size_t buflen)
323{
324 memset(buf, ' ', buflen);
325 buf[buflen-1] = '\0';
326}
327
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000328static char *build_row(char *p, unsigned *dp)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000329{
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000330 unsigned col, val, day;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000331
Manuel Novoa III cad53642003-03-19 09:13:01 +0000332 memset(p, ' ', (julian + DAY_LEN) * 7);
333
334 col = 0;
335 do {
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000336 day = *dp++;
337 if (day != SPACE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000338 if (julian) {
Manuel Novoa III 5b3c0562003-08-13 12:11:33 +0000339 ++p;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000340 if (day >= 100) {
341 *p = '0';
342 p[-1] = (day / 100) + '0';
343 day %= 100;
344 }
345 }
Denis Vlasenko661f6fa2007-07-26 11:12:51 +0000346 val = day / 10;
347 if (val > 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000348 *p = val + '0';
349 }
350 *++p = day % 10 + '0';
351 p += 2;
352 } else {
353 p += DAY_LEN + julian;
354 }
355 } while (++col < 7);
356
357 return p;
358}
Eric Andersenc98c0622001-12-06 15:16:43 +0000359
360/*
361 * Copyright (c) 1989, 1993, 1994
362 * The Regents of the University of California. All rights reserved.
363 *
364 * This code is derived from software contributed to Berkeley by
365 * Kim Letkeman.
366 *
367 * Redistribution and use in source and binary forms, with or without
368 * modification, are permitted provided that the following conditions
369 * are met:
370 * 1. Redistributions of source code must retain the above copyright
371 * notice, this list of conditions and the following disclaimer.
372 * 2. Redistributions in binary form must reproduce the above copyright
373 * notice, this list of conditions and the following disclaimer in the
374 * documentation and/or other materials provided with the distribution.
Aaron Lehmann69d41782002-06-23 22:25:24 +0000375 * 3. Neither the name of the University nor the names of its contributors
Eric Andersenc98c0622001-12-06 15:16:43 +0000376 * may be used to endorse or promote products derived from this software
377 * without specific prior written permission.
378 *
Denys Vlasenko95f79532017-08-02 14:26:33 +0200379 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND
Eric Andersenc98c0622001-12-06 15:16:43 +0000380 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
381 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
382 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
383 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
384 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
385 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
386 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
387 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
388 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
389 * SUCH DAMAGE.
390 */