|
|||||||
|
|
DYSIZESection: Linux Programmer's Manual (3)Updated: November 12, 2001 Index Return to Main Contents NAMEdysize - get number of days for a given yearSYNOPSIS
#define _BSD_SOURCE /* or: #define _SVID_SOURCE */
int dysize(int year); DESCRIPTIONThe function returns 365 for a normal year and 366 for a leap year. The calculation for leap year is based on:(year) %4 == 0 && ((year) %100 != 0 || (year) %400 == 0) The formula is defined in the macro __isleap(year) also found in <time.h>. CONFORMING TOThis function occurs in SunOS 4.x.NOTESThis is a compatibility function only. Don't use it in new programs. The SCO version of this function had a year-2000 problem.SEE ALSOstrftime(3), time(3)
Index | ||||||
|
|
|
Home :: Copyright :: Privacy :: Credits :: Get a free Linuxinfor Email Account Document on this page is part of "Linuxinfor Man Pages in HTML Format: man3". See Index Page for more info about Authorship and Copyright. 1999-2008 Linuxinfor.com. No rights reserved. |