summaryrefslogtreecommitdiffstats
path: root/misc-utils
diff options
context:
space:
mode:
authorSami Kerola2013-11-10 19:23:29 +0100
committerKarel Zak2013-12-06 10:58:52 +0100
commit76c4bbcc6e2811026ee172cbd7a93f587fed2385 (patch)
treef8efd0d401db434fb488abdc386e6c44c9553df9 /misc-utils
parentcal: use control structure for run time configuration (diff)
downloadkernel-qcow2-util-linux-76c4bbcc6e2811026ee172cbd7a93f587fed2385.tar.gz
kernel-qcow2-util-linux-76c4bbcc6e2811026ee172cbd7a93f587fed2385.tar.xz
kernel-qcow2-util-linux-76c4bbcc6e2811026ee172cbd7a93f587fed2385.zip
cal: rename ascii_wnum() to ascii_weeknum()
Week is not long word, so it does not need to be enshorted and made more difficult to understand. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'misc-utils')
-rw-r--r--misc-utils/cal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc-utils/cal.c b/misc-utils/cal.c
index f82d02eae..bcc15807e 100644
--- a/misc-utils/cal.c
+++ b/misc-utils/cal.c
@@ -249,7 +249,7 @@ struct cal_control {
/* function prototypes */
static int leap_year(long year);
static char *ascii_day(char *, int, const struct cal_control *ctl);
-static char *ascii_wnum(char *p, int wn, const struct cal_control *ctl);
+static char *ascii_weeknum(char *p, int wn, const struct cal_control *ctl);
static int center_str(const char* src, char* dest, size_t dest_size, size_t width);
static void center(const char *, size_t, int);
static void day_array(int, int, long, int *, const struct cal_control *ctl);
@@ -558,7 +558,7 @@ static int do_monthly(int day, int month, long year, struct fmt_st *out,
if (xd != SPACE) {
int wn = week_number(xd & ~TODAY_FLAG,
month, year, ctl);
- p = ascii_wnum(p, wn, ctl);
+ p = ascii_weeknum(p, wn, ctl);
break;
} else if (col+1 == DAYS_IN_WEEK)
p += sprintf(p," ");
@@ -679,7 +679,7 @@ static char *append_weeknum(char *p, int *dp,
if (xd != SPACE) {
int weeknum = week_number(xd & ~TODAY_FLAG,
month + cal + 1, year, ctl);
- p = ascii_wnum(p, weeknum, ctl);
+ p = ascii_weeknum(p, weeknum, ctl);
break;
} else if (col+1 == DAYS_IN_WEEK)
p += sprintf(p," ");
@@ -965,7 +965,7 @@ static char *ascii_day(char *p, int day, const struct cal_control *ctl)
return p;
}
-static char *ascii_wnum(char *p, int weeknum, const struct cal_control *ctl)
+static char *ascii_weeknum(char *p, int weeknum, const struct cal_control *ctl)
{
if ((ctl->weektype & WEEK_NUM_MASK) == weeknum)
p += sprintf(p,"%s",Senter);