Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/int_tools.c')
-rw-r--r--src/int_tools.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/int_tools.c b/src/int_tools.c
new file mode 100644
index 0000000..13e2cf9
--- /dev/null
+++ b/src/int_tools.c
@@ -0,0 +1,26 @@
+#include <math.h>
+#include "int_tools.h"
+
+// return smallest power of 2 that is > x
+int smallest_pow2(
+ int x
+){
+ return ipow(2,((int)log2(x)+1));
+}
+
+// integer power
+int ipow(
+ int x,
+ int n
+){
+ int out=1;
+ while (n>0)
+ {
+ if (n%2==1){
+ out*=x;
+ }
+ n/=2;
+ x*=x;
+ }
+ return out;
+}