cctools
timer.h
Go to the documentation of this file.
1 /*
2 Copyright (C) 2022 The University of Notre Dame
3 This software is distributed under the GNU General Public License.
4 See the file COPYING for details.
5 */
6 
7 #ifndef TIMER_H
8 #define TIMER_H
9 
12 void timer_init(int, const char *[]);
13 void timer_destroy();
14 void timer_start(int);
15 void timer_stop(int);
16 void timer_reset(int);
17 double timer_elapsed_time(int);
18 double timer_average_time(int);
19 void timer_print_summary(int);
20 
21 #endif