12 lines
201 B
C
12 lines
201 B
C
|
typedef struct configuration {
|
||
|
int n;
|
||
|
double north;
|
||
|
double east;
|
||
|
double south;
|
||
|
double west;
|
||
|
double init_value;
|
||
|
double threshold;
|
||
|
} configuration;
|
||
|
|
||
|
int load_config(configuration *config);
|