Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- SoftC Database Library v2.1 Guide - usage http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
   int sccdl2i(
           int *year,
           int *month,
           int *day,
           long date );

PROTOTYPE IN
   sc_clock.h

DESCRIPTION
   sccdl2i converts a long integer date into three integers: year,
   month, and day. The long date is tested for validity before
   the conversion takes place.

EXAMPLE
   #include <stdio.h>
   #include <softc.h>
   #include <sc_clock.h>

   void main()
   {
     int year, month, day;
     long date;

     sccdi2l(&date,1990,5,16);
     date++;
     sccdl2i(&year,&month,&day,date);
     printf("%d %d %d\n",year,month,day);
   }

See Also: sccdi2l

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson