| 79 | } |
| 80 | |
| 81 | void simple_timer_copy // copies a simple time |
| 82 | ( |
| 83 | const double tic [2], // tic from last call to simple_tic |
| 84 | double cpy [2] // pointer to recieve a copy of tic |
| 85 | ) |
| 86 | { |
| 87 | cpy[0] = tic[0]; |
| 88 | cpy[1] = tic[1]; |
| 89 | } |
| 90 | |
| 91 | uint64_t unix_timestamp // returns UNIX timestamp |
| 92 | ( |
no outgoing calls
no test coverage detected