home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / MBUG / MBUG150.ARC / C-STUFF2.LBR / LEAPYEAR.C < prev    next >
Text File  |  1979-12-31  |  256b  |  17 lines

  1.  
  2. leapyear(year)                /* return leapyear stat */
  3. int    year;
  4. char     ????;
  5.  
  6.     {
  7.     if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
  8.  
  9.         /* it's a leap year */
  10.  
  11.     else
  12.  
  13.         /* it's not */
  14.  
  15.     return(?)
  16.     }
  17.