summaryrefslogtreecommitdiff
path: root/example/libfib/fib.h
blob: 655672310628c095dc3a2d2f7b86d093d89703e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// Copyright (c) 2026 Jacob McDonnell
//
// SPDX-License-Identifier: BSD-2-Clause
//
#ifndef FIB_H_
#define FIB_H_

#include <stdint.h>

uint64_t fib(uint64_t);

#endif  // FIB_H_