10 lines
143 B
C
10 lines
143 B
C
|
#pragma once
|
||
|
|
||
|
void timer_init();
|
||
|
|
||
|
void timer_start(int i);
|
||
|
|
||
|
double timer_stop(int i);
|
||
|
|
||
|
// Assume f is a black-box operation
|
||
|
double f(double x);
|