Files
AwesomePolytech/OSs/lab-libs/lib.h

22 lines
535 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef LIB_H_
#define LIB_H_
#include <stdlib.h>
/**
* Это будет просто какая-то не очень умная библиотечка с двумя функциями,
* просто чтобы их типа собрать
*/
/**
* Считает n-ное число фибоначи
*/
size_t fibo(size_t n);
/**
* Считает ноль функции на интервале с указанной погрешностью
*/
double zeroin(double (*f)(double), double err, double a, double b);
#endif