[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
   signed int sccdl2sx(
           signed char *string,
           signed int format,
           signed long date );

PROTOTYPE IN
   sc_clock.h

DESCRIPTION
   sccdl2sx converts a long date into an ASCIIZ string string of
   the date style format. A check is made to verify that string is a
   valid date string before exiting.

   Date string styles:
   SC_GREGOR     mm/dd/yy
   SC_GREGORL    mm/dd/yyyy
   SC_JULIAN     yyyy/ddd
   SC_YMD        yyyymmdd
   SC_DMY        ddmmyy

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

   void main()
   {
     signed char d[9];

     sccdl2sx(d,SC_YMD,726489);
     puts(d);
   }

See Also: sccds2lx
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson