"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Calendar implementation for busybox |
| 4 | * |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 5 | * See original copyright at the end of this file |
| 6 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
| 8 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 9 | |
| 10 | /* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */ |
| 11 | /* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream |
| 12 | * BB_AUDIT BUG: version in util-linux seems to be broken as well. */ |
| 13 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */ |
| 14 | |
| 15 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 16 | * |
| 17 | * Major size reduction... over 50% (>1.5k) on i386. |
| 18 | */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 19 | |
Manuel Novoa III | b99cb64 | 2002-05-29 19:08:41 +0000 | [diff] [blame] | 20 | #include "busybox.h" |
| 21 | |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 22 | #define THURSDAY 4 /* for reformation */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 23 | #define SATURDAY 6 /* 1 Jan 1 was a Saturday */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 24 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 25 | #define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */ |
| 26 | #define NUMBER_MISSING_DAYS 11 /* 11 day correction */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 27 | |
| 28 | #define MAXDAYS 42 /* max slots in a month array */ |
| 29 | #define SPACE -1 /* used in day array */ |
| 30 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 31 | static const char days_in_month[] = { |
| 32 | 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 33 | }; |
| 34 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 35 | static const char sep1752[] = { |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 36 | 1, 2, 14, 15, 16, |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 37 | 17, 18, 19, 20, 21, 22, 23, |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 38 | 24, 25, 26, 27, 28, 29, 30 |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 41 | static int julian; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 42 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 43 | /* leap year -- account for Gregorian reformation in 1752 */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 44 | #define leap_year(yr) \ |
| 45 | ((yr) <= 1752 ? !((yr) % 4) : \ |
| 46 | (!((yr) % 4) && ((yr) % 100)) || !((yr) % 400)) |
| 47 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 48 | static int is_leap_year(int year) |
| 49 | { |
| 50 | return leap_year(year); |
| 51 | } |
| 52 | #undef leap_year |
| 53 | #define leap_year(yr) is_leap_year(yr) |
| 54 | |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 55 | /* number of centuries since 1700, not inclusive */ |
| 56 | #define centuries_since_1700(yr) \ |
| 57 | ((yr) > 1700 ? (yr) / 100 - 17 : 0) |
| 58 | |
| 59 | /* number of centuries since 1700 whose modulo of 400 is 0 */ |
| 60 | #define quad_centuries_since_1700(yr) \ |
| 61 | ((yr) > 1600 ? ((yr) - 1600) / 400 : 0) |
| 62 | |
| 63 | /* number of leap years between year 1 and this year, not inclusive */ |
| 64 | #define leap_years_since_year_1(yr) \ |
| 65 | ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr)) |
| 66 | |
"Vladimir N. Oleynik" | 5c2b238 | 2006-02-28 10:15:42 +0000 | [diff] [blame] | 67 | static void center (char *, int, int); |
| 68 | static void day_array (int, int, int *); |
| 69 | static void trim_trailing_spaces_and_print (char *); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 70 | |
| 71 | static void blank_string(char *buf, size_t buflen); |
| 72 | static char *build_row(char *p, int *dp); |
| 73 | |
| 74 | #define DAY_LEN 3 /* 3 spaces per day */ |
| 75 | #define J_DAY_LEN (DAY_LEN + 1) |
| 76 | #define WEEK_LEN 20 /* 7 * 3 - one space at the end */ |
| 77 | #define J_WEEK_LEN (WEEK_LEN + 7) |
| 78 | #define HEAD_SEP 2 /* spaces between day headings */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 79 | |
| 80 | int cal_main(int argc, char **argv) |
| 81 | { |
| 82 | struct tm *local_time; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 83 | struct tm zero_tm; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 84 | time_t now; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 85 | int month, year, flags, i; |
| 86 | char *month_names[12]; |
| 87 | char day_headings[28]; /* 28 for julian, 21 for nonjulian */ |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 88 | char buf[40]; |
| 89 | |
| 90 | #ifdef CONFIG_LOCALE_SUPPORT |
| 91 | setlocale(LC_TIME, ""); |
| 92 | #endif |
| 93 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 94 | flags = getopt32(argc, argv, "jy"); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 95 | |
| 96 | julian = flags & 1; |
| 97 | |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 98 | argv += optind; |
| 99 | |
| 100 | month = 0; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 101 | |
| 102 | if ((argc -= optind) > 2) { |
| 103 | bb_show_usage(); |
| 104 | } |
| 105 | |
| 106 | if (!argc) { |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 107 | time(&now); |
| 108 | local_time = localtime(&now); |
| 109 | year = local_time->tm_year + 1900; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 110 | if (!(flags & 2)) { |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 111 | month = local_time->tm_mon + 1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 112 | } |
| 113 | } else { |
| 114 | if (argc == 2) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame^] | 115 | month = xatoul_range(*argv++, 1, 12); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 116 | } |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame^] | 117 | year = xatoul_range(*argv, 1, 9999); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 120 | blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian); |
| 121 | |
| 122 | i = 0; |
| 123 | do { |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 124 | zero_tm.tm_mon = i; |
| 125 | strftime(buf, sizeof(buf), "%B", &zero_tm); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 126 | month_names[i] = xstrdup(buf); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 127 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 128 | if (i < 7) { |
| 129 | zero_tm.tm_wday = i; |
| 130 | strftime(buf, sizeof(buf), "%a", &zero_tm); |
| 131 | strncpy(day_headings + i * (3+julian) + julian, buf, 2); |
| 132 | } |
| 133 | } while (++i < 12); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 134 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 135 | if (month) { |
| 136 | int row, len, days[MAXDAYS]; |
| 137 | int *dp = days; |
| 138 | char lineout[30]; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 139 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 140 | day_array(month, year, dp); |
| 141 | len = sprintf(lineout, "%s %d", month_names[month - 1], year); |
| 142 | bb_printf("%*s%s\n%s\n", |
| 143 | ((7*julian + WEEK_LEN) - len) / 2, "", |
| 144 | lineout, day_headings); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 145 | for (row = 0; row < 6; row++) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 146 | build_row(lineout, dp)[0] = '\0'; |
| 147 | dp += 7; |
| 148 | trim_trailing_spaces_and_print(lineout); |
| 149 | } |
| 150 | } else { |
| 151 | int row, which_cal, week_len, days[12][MAXDAYS]; |
| 152 | int *dp; |
| 153 | char lineout[80]; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 154 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 155 | sprintf(lineout, "%d", year); |
| 156 | center(lineout, |
| 157 | (WEEK_LEN * 3 + HEAD_SEP * 2) |
| 158 | + julian * (J_WEEK_LEN * 2 + HEAD_SEP |
| 159 | - (WEEK_LEN * 3 + HEAD_SEP * 2)), |
| 160 | 0); |
| 161 | puts("\n"); /* two \n's */ |
| 162 | for (i = 0; i < 12; i++) { |
| 163 | day_array(i + 1, year, days[i]); |
| 164 | } |
| 165 | blank_string(lineout, sizeof(lineout)); |
| 166 | week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN); |
| 167 | for (month = 0; month < 12; month += 3-julian) { |
| 168 | center(month_names[month], week_len, HEAD_SEP); |
| 169 | if (!julian) { |
| 170 | center(month_names[month + 1], week_len, HEAD_SEP); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 171 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 172 | center(month_names[month + 2 - julian], week_len, 0); |
| 173 | bb_printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings); |
| 174 | if (!julian) { |
| 175 | bb_printf("%*s%s", HEAD_SEP, "", day_headings); |
| 176 | } |
| 177 | putchar('\n'); |
| 178 | for (row = 0; row < (6*7); row += 7) { |
| 179 | for (which_cal = 0; which_cal < 3-julian; which_cal++) { |
| 180 | dp = days[month + which_cal] + row; |
| 181 | build_row(lineout + which_cal * (week_len + 2), dp); |
| 182 | } |
| 183 | /* blank_string took care of nul termination. */ |
| 184 | trim_trailing_spaces_and_print(lineout); |
| 185 | } |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 186 | } |
| 187 | } |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 188 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 189 | bb_fflush_stdout_and_exit(0); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | /* |
| 193 | * day_array -- |
| 194 | * Fill in an array of 42 integers with a calendar. Assume for a moment |
| 195 | * that you took the (maximum) 6 rows in a calendar and stretched them |
| 196 | * out end to end. You would have 42 numbers or spaces. This routine |
| 197 | * builds that array for any month from Jan. 1 through Dec. 9999. |
| 198 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 199 | static void day_array(int month, int year, int *days) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 200 | { |
| 201 | long temp; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 202 | int i; |
| 203 | int j_offset; |
| 204 | int day, dw, dm; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 205 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 206 | memset(days, SPACE, MAXDAYS * sizeof(int)); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 207 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 208 | if ((month == 9) && (year == 1752)) { |
"Vladimir N. Oleynik" | 676b15e | 2006-01-30 13:47:19 +0000 | [diff] [blame] | 209 | size_t oday = 0; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 210 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 211 | j_offset = julian * 244; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 212 | do { |
"Vladimir N. Oleynik" | 676b15e | 2006-01-30 13:47:19 +0000 | [diff] [blame] | 213 | days[oday+2] = sep1752[oday] + j_offset; |
| 214 | } while (++oday < sizeof(sep1752)); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 215 | |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 216 | return; |
| 217 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 218 | |
| 219 | /* day_in_year |
| 220 | * return the 1 based day number within the year |
| 221 | */ |
| 222 | day = 1; |
| 223 | if ((month > 2) && leap_year(year)) { |
| 224 | ++day; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 225 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 226 | |
| 227 | i = month; |
| 228 | while (i) { |
| 229 | day += days_in_month[--i]; |
| 230 | } |
| 231 | |
| 232 | /* day_in_week |
| 233 | * return the 0 based day number for any date from 1 Jan. 1 to |
| 234 | * 31 Dec. 9999. Assumes the Gregorian reformation eliminates |
| 235 | * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all |
| 236 | * missing days. |
| 237 | */ |
| 238 | dw = THURSDAY; |
| 239 | temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1) |
| 240 | + day; |
| 241 | if (temp < FIRST_MISSING_DAY) { |
| 242 | dw = ((temp - 1 + SATURDAY) % 7); |
| 243 | } else if (temp >= (FIRST_MISSING_DAY + NUMBER_MISSING_DAYS)) { |
| 244 | dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7); |
| 245 | } |
| 246 | |
| 247 | if (!julian) { |
| 248 | day = 1; |
| 249 | } |
| 250 | |
| 251 | dm = days_in_month[month]; |
| 252 | if ((month == 2) && leap_year(year)) { |
| 253 | ++dm; |
| 254 | } |
| 255 | |
| 256 | while (dm) { |
| 257 | days[dw++] = day++; |
| 258 | --dm; |
| 259 | } |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 262 | static void trim_trailing_spaces_and_print(char *s) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 263 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 264 | char *p = s; |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 265 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 266 | while (*p) { |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 267 | ++p; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 268 | } |
| 269 | while (p > s) { |
| 270 | --p; |
| 271 | if (!(isspace)(*p)) { /* We want the function... not the inline. */ |
| 272 | p[1] = '\0'; |
| 273 | break; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | puts(s); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 278 | } |
| 279 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 280 | static void center(char *str, int len, int separate) |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 281 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 282 | int n = strlen(str); |
| 283 | len -= n; |
| 284 | bb_printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, ""); |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 285 | } |
| 286 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 287 | static void blank_string(char *buf, size_t buflen) |
| 288 | { |
| 289 | memset(buf, ' ', buflen); |
| 290 | buf[buflen-1] = '\0'; |
| 291 | } |
| 292 | |
| 293 | static char *build_row(char *p, int *dp) |
| 294 | { |
| 295 | int col, val, day; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 296 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 297 | memset(p, ' ', (julian + DAY_LEN) * 7); |
| 298 | |
| 299 | col = 0; |
| 300 | do { |
| 301 | if ((day = *dp++) != SPACE) { |
| 302 | if (julian) { |
Manuel Novoa III | 5b3c056 | 2003-08-13 12:11:33 +0000 | [diff] [blame] | 303 | ++p; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 304 | if (day >= 100) { |
| 305 | *p = '0'; |
| 306 | p[-1] = (day / 100) + '0'; |
| 307 | day %= 100; |
| 308 | } |
| 309 | } |
| 310 | if ((val = day / 10) > 0) { |
| 311 | *p = val + '0'; |
| 312 | } |
| 313 | *++p = day % 10 + '0'; |
| 314 | p += 2; |
| 315 | } else { |
| 316 | p += DAY_LEN + julian; |
| 317 | } |
| 318 | } while (++col < 7); |
| 319 | |
| 320 | return p; |
| 321 | } |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 322 | |
| 323 | /* |
| 324 | * Copyright (c) 1989, 1993, 1994 |
| 325 | * The Regents of the University of California. All rights reserved. |
| 326 | * |
| 327 | * This code is derived from software contributed to Berkeley by |
| 328 | * Kim Letkeman. |
| 329 | * |
| 330 | * Redistribution and use in source and binary forms, with or without |
| 331 | * modification, are permitted provided that the following conditions |
| 332 | * are met: |
| 333 | * 1. Redistributions of source code must retain the above copyright |
| 334 | * notice, this list of conditions and the following disclaimer. |
| 335 | * 2. Redistributions in binary form must reproduce the above copyright |
| 336 | * notice, this list of conditions and the following disclaimer in the |
| 337 | * documentation and/or other materials provided with the distribution. |
Aaron Lehmann | 69d4178 | 2002-06-23 22:25:24 +0000 | [diff] [blame] | 338 | * 3. Neither the name of the University nor the names of its contributors |
Eric Andersen | c98c062 | 2001-12-06 15:16:43 +0000 | [diff] [blame] | 339 | * may be used to endorse or promote products derived from this software |
| 340 | * without specific prior written permission. |
| 341 | * |
| 342 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 343 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 344 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 345 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 346 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 347 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 348 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 349 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 350 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 351 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 352 | * SUCH DAMAGE. |
| 353 | */ |
| 354 | |
| 355 | |