Hacked By AnonymousFox

Current Path : /proc/thread-self/root/proc/thread-self/root/usr/share/awk/
Upload File :
Current File : //proc/thread-self/root/proc/thread-self/root/usr/share/awk/bits2str.awk

# bits2str --- turn an integer into readable ones and zeros

function bits2str(bits,        data, mask)
{
    if (bits == 0)
        return "0"

    mask = 1
    for (; bits != 0; bits = rshift(bits, 1))
        data = (and(bits, mask) ? "1" : "0") data

    while ((length(data) % 8) != 0)
        data = "0" data

    return data
}

Hacked By AnonymousFox1.0, Coded By AnonymousFox