int SDL_MostSignificantBitIndex32(Uint32 x)
x | 最上位ビットを得る数値 |
#include "SDL.h"
#include "SDL_bits.h"
int main(int argc, char *argv[]) {
if (argc != 2) {
SDL_Log("使い方: %s <数値", argv[0]);
return 1;
}
int bitmask = SDL_atoi(argv[1]);
if (bitmask < 0) {
SDL_Log("数値は正である必要がある");
return 1;
}
int index = SDL_MostSignificantBitIndex32(bitmask);
SDL_Log("MSBは %d ビット目", index);
return 0;
}