10 lines
96 B
C
10 lines
96 B
C
#ifndef SOLVE_H
|
|
#define SOLVE_H
|
|
|
|
typedef struct {
|
|
double val;
|
|
int i;
|
|
int j;
|
|
} max_t;
|
|
|
|
#endif
|