On 7/12/07, Steinmaurer Thomas <[EMAIL PROTECTED]> wrote:
Hello,
is there a way to retrieve and store the millisecond part of a (current)
timestamp?
If you're on a Unix-like system, have a look at gettimeofday which returns:
struct timeval {
long tv_sec; /* seconds since Jan. 1, 1970 */
long tv_usec; /* and microseconds */
};
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------