view src/ln.h @ 313:561eedeb9a99

ommit static variable at console
author anatofuz
date Thu, 06 Feb 2020 16:56:50 +0900
parents f9169495d476
children
line wrap: on
line source

static inline int ln(int sz) {
    int j = 1 << 6;
    for (int i = 6; i < 12; i++) {
        if (sz < j) return i;
        j <<= 1;
    }
    return 12;
}