/* * Copyright ©2022 Hannah C. Tang. All rights reserved. Permission is * hereby granted to students registered for University of Washington * CSE 333 for use solely during Spring Quarter 2022 for purposes of * the course. No other use, copying, distribution, or modification * is permitted without prior written consent. Copyrights for * third-party components of this work must be honored. Instructors * interested in reusing these course materials should contact the * author. */ #ifndef FIB_H_ #define FIB_H_ #include // uint64_t extern int64_t *fib_values; int64_t fib(int16_t n); #endif // FIB_H_