Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/libc/strptime.cc')
-rw-r--r--winsup/cygwin/libc/strptime.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/winsup/cygwin/libc/strptime.cc b/winsup/cygwin/libc/strptime.cc
index 66c249e9a..ca059842a 100644
--- a/winsup/cygwin/libc/strptime.cc
+++ b/winsup/cygwin/libc/strptime.cc
@@ -275,21 +275,21 @@ find_alt_digits (const unsigned char *bp, alt_digits_t *adi, uint *pval)
return NULL;
}
-static int
+static int
is_leap_year (int year)
-{
+{
return (year % 4) == 0 && ((year % 100) != 0 || (year % 400) == 0);
-}
+}
-static int
+static int
first_day (int year)
-{
+{
int ret = 4;
-
+
while (--year >= 1970)
ret = (ret + 365 + is_leap_year (year)) % 7;
- return ret;
-}
+ return ret;
+}
/* This simplifies the calls to conv_num enormously. */
#define ALT_DIGITS ((alt_format & ALT_O) ? *alt_digits : NULL)