12 lines
206 B
C
12 lines
206 B
C
#ifndef COUNT_BETWEEN
|
|
#define COUNT_BETWEEN
|
|
|
|
#include <stdio.h>
|
|
|
|
#define eps 1.e-6
|
|
|
|
double fmax(double a, double b);
|
|
double fmin(double a, double b);
|
|
int countBetween(FILE * file);
|
|
|
|
#endif // COUNT_BETWEEN
|