7 lines
128 B
C
7 lines
128 B
C
#ifndef SOLVE_H
|
|
#define SOLVE_H
|
|
|
|
int compare(const double a, const double b);
|
|
double t1_solve(double *a, int m, int n);
|
|
|
|
#endif
|