From 6cdf07fb786c4c0a882cb7fde07e17a693941eaf Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Sun, 30 Oct 2022 19:30:29 -0500 Subject: Initial commit --- util/prime_search.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 util/prime_search.h (limited to 'util/prime_search.h') diff --git a/util/prime_search.h b/util/prime_search.h new file mode 100644 index 0000000..842c6d9 --- /dev/null +++ b/util/prime_search.h @@ -0,0 +1,8 @@ +#ifndef _NEXT_LARGEST_PRIME_H +#define _NEXT_LARGEST_PRIME_H + +#include + +size_t next_prime_above_lowerbound(size_t n); + +#endif /* ifndef _NEXT_LARGEST_PRIME_H */ -- cgit v1.2.3