trick/trick_source/sim_services/Clock/include/clock_proto.h
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

24 lines
385 B
C

#ifndef CLOCK_PROTO_H
#define CLOCK_PROTO_H
#ifdef __cplusplus
extern "C" {
#endif
long long clock_time() ;
long long clock_wall_time() ;
long long clock_reset(long long ref) ;
int clock_spin(long long ref) ;
int clock_set_reference(long long ref) ;
double clock_get_rt_clock_ratio() ;
int clock_set_rt_clock_ratio(double in_rt_clock_ratio) ;
#ifdef __cplusplus
}
#endif
#endif