aboutsummaryrefslogtreecommitdiff
path: root/util/prime_search.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/prime_search.h')
-rw-r--r--util/prime_search.h8
1 files changed, 8 insertions, 0 deletions
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 <stddef.h>
+
+size_t next_prime_above_lowerbound(size_t n);
+
+#endif /* ifndef _NEXT_LARGEST_PRIME_H */