MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / IsLeapYear

Function IsLeapYear

Libraries/unrar/timefn.cpp:337–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

335
336
337bool IsLeapYear(int Year)
338{
339 return (Year&3)==0 && (Year%100!=0 || Year%400==0);
340}

Callers 2

GetLocalMethod · 0.85
GenArcNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected