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 scctsget(
           char *time,
           int format );

PROTOTYPE IN
   sc_clock.h

DESCRIPTION
   scctsget returns the current time from DOS in ASCIIZ string
   format.

   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()
   {
     char time[10];

     scctsget(time,SC_MIL);
     puts(time);
   }

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