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

7 lines
53 B
C
Raw Normal View History

2018-05-05 22:18:02 +00:00
#ifndef FIB_H
#define FIB_H
int fib(int n);
#endif