ref: 988f580a00df5c56efb55f5d6ee5cb00f815fa6b
dir: /tests/src/test-mathutils.c/
#include <stdio.h>
#include <assert.h>
#include <aubio.h>
int main(){
int a, b;
a = 31; b = aubio_next_power_of_two(a);
fprintf(stdout, "next_power_of_two of %d is %d\n", a, b);
assert(b == 32);
a = 32; b = aubio_next_power_of_two(a);
fprintf(stdout, "next_power_of_two of %d is %d\n", a, b);
assert(b == 32);
a = 33; b = aubio_next_power_of_two(a);
fprintf(stdout, "next_power_of_two of %d is %d\n", a, b);
assert(b == 64);
return 0;
}