[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
USAGE
signed int scctiget(
signed int *hours,
signed int *minutes,
signed int *seconds,
signed int *fraction );
PROTOTYPE IN
sc_clock.h
DESCRIPTION
scctiget returns the current time from DOS in integer form: hours,
minutes, seconds, and hundredths of a second (fraction).
EXAMPLE
#include <stdio.h>
#include <softc.h>
#include <sc_clock.h>
void main()
{
int hours, minutes, seconds, fraction;
scctiget(&hours, &minutes, &seconds,&fraction);
printf("%d %d %d %d\n", hours, minutes, seconds, fraction);
}
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson