9 lines
106 B
C
9 lines
106 B
C
#ifndef SOLVE_H
|
|
#define SOLVE_H
|
|
|
|
int t1_solve (
|
|
double (*f) (double),
|
|
double x, double h
|
|
);
|
|
|
|
#endif
|