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 scctsdiff(
           long *diff,
           char *time1,
           int format1,
           char *time2,
           int format2 );

PROTOTYPE IN
   sc_clock.h

DESCRIPTION
   scctsdiff returns the difference in seconds between time1 and
   time2. The two ASCIIZ time strings can be in any order, but must be
   valid string styles (format1, format2).

   Time string styles:
   SC_CSHMS   hh:mm:ss
   SC_MIL     military (0000-2359)

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

   void main()
   {
     long d;

     scctsdiff(&d, "12:03:59", SC_CSHMS,"11:30:00", SC_CSHMS);
     printf("%ld",d);
   }

See Also: sccti2s scctsvalid

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