diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-06 21:21:55 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-06 21:21:55 -0500 |
| commit | ca915283cb63068f2fb6bb03ec8faf9c97d009d0 (patch) | |
| tree | bc5afadab2c2bb28a9fa005d77a27c567276c449 /example/libfib/fib.h | |
| parent | 5dd9182100f7ded42cab29ee5d556b88d818ee35 (diff) | |
feat: templates for libs
Added GNU Makefile templates for quick building programs, static
libraries, & shared libraries.
Diffstat (limited to 'example/libfib/fib.h')
| -rw-r--r-- | example/libfib/fib.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/example/libfib/fib.h b/example/libfib/fib.h new file mode 100644 index 0000000..66615c5 --- /dev/null +++ b/example/libfib/fib.h @@ -0,0 +1,9 @@ +#ifndef FIB_H_ +#define FIB_H_ + +#include <stdint.h> + +uint64_t fib(uint64_t); + +#endif // FIB_H_ + |
