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