icp/oer/courses/c-basics/sections/24-dynamic-memory/02-heap/fib.h

7 lines
53 B
C

#ifndef FIB_H
#define FIB_H
int fib(int n);
#endif