853f4d7007c4aac3af3830f9df0dfe5e0ee8de18
[physics.git] / src / ticks.h
1 #ifndef TICKS_H
2 #define TICKS_H
3
4 /// ***** Public Methods *****
5
6 // returns the current seconds from program start
7 long int tickCountSec();
8
9 // returns the current milliseconds from program start
10 long int tickCountMilli();
11
12 // returns the current microseconds from program start
13 long int tickCountMicro();
14
15 #endif // TICKS_H