MSUStudentWork/WorkingArrays/13ExDeluxe/equal.h

13 lines
202 B
C

#ifndef EQUAL
#define EQUAL
#include <stdio.h>
#include <math.h>
#include <stdbool.h>
#define eps 1.e-6
int canFixArray(double * numbers);
bool isEqual(double first, double second);
#endif // EQUAL