1 2 3 4 5 6 7 8 9
#ifndef FIB_H_ #define FIB_H_ #include <stdint.h> uint64_t fib(uint64_t); #endif // FIB_H_