10 lines
139 B
C
10 lines
139 B
C
#ifndef INTEGRAL_H
|
|
#define INTEGRAL_H
|
|
|
|
int trapezoid (
|
|
double (*f) (double),
|
|
double a, double b,
|
|
double eps, double *res
|
|
);
|
|
|
|
#endif
|