CAL Timer Utility Library
=========================

Library Name: 
-------------

libtimeit


Entry Point Functions: 
----------------------

timeobj *timeit_new() 

     Return new timer object.

void timeit_delete( timeobj *tt ) 

     Delete timer object.

void timeit_start( timeobj *tt) 

     Return start time in timer object.

void timeit_stop( timeobj *tt)

     Return stop time in timer object.

int timeit_geti( const timeobj *tt, const timeit_token tok )

     Return as an integer value, the elapsed time from the specified
     timer object in seconds or microseconds according to the 
     specified timeit_token.  Legal values for timeit_token include
     timeit_second and timeit_useconds.

int timeit_getf( const timeobj *tt, const timeit_token tok )

     Return as a float value, the elapsed time from the specified
     timer object in seconds or microseconds according to the
     specified timeit_token.  Legal values for timeit_token include
     timeit_second and timeit_useconds. 
