Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
ab33bcd3
Unverified
Commit
ab33bcd3
authored
Jul 13, 2018
by
Salvatore Sanfilippo
Committed by
GitHub
Jul 13, 2018
Browse files
Merge pull request #5120 from andrewsensus/leap-year-comment-patch-1
update leap year comment
parents
2352a519
8dc08ae2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/localtime.c
View file @
ab33bcd3
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
* designed to work with what time(NULL) may return, and to support Redis
* designed to work with what time(NULL) may return, and to support Redis
* logging of the dates, it's not really a complete implementation. */
* logging of the dates, it's not really a complete implementation. */
static
int
is_leap_year
(
time_t
year
)
{
static
int
is_leap_year
(
time_t
year
)
{
if
(
year
%
4
)
return
0
;
/* A year divisible by 4 is not leap. */
if
(
year
%
4
)
return
0
;
/* A year
not
divisible by 4 is not leap. */
else
if
(
year
%
100
)
return
1
;
/* If div by 4 and not 100 is surely leap. */
else
if
(
year
%
100
)
return
1
;
/* If div by 4 and not 100 is surely leap. */
else
if
(
year
%
400
)
return
0
;
/* If div by 100 *and* 400 is not leap. */
else
if
(
year
%
400
)
return
0
;
/* If div by 100 *and* 400 is not leap. */
else
return
1
;
/* If div by 100 and not by 400 is leap. */
else
return
1
;
/* If div by 100 and not by 400 is leap. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment