aubio_is_power_of_two method

int aubio_is_power_of_two(
  1. int a
)

return 1 if a is a power of 2, 0 otherwise

Implementation

int aubio_is_power_of_two(
  int a,
) {
  return _aubio_is_power_of_two(
    a,
  );
}