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