MSUStudentWork/10Ex/count_between.h
2024-09-27 09:30:00 +03:00

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