Signature
stock xs_get_maxnum(){ if(!xs__maxnum) { // build it xs__maxnum = ((1 << (cellbits - 2)) - 1 ) | (1 << (cellbits - 2)); /* new bits = get_cellsize() * 8 - 1; for(new i = 0; i < bits; ++i) xs__maxnum |= 1 << i; */ } return xs__maxnum;}
Description
Returns the biggest possible positive number.
Returns
The biggest possible positive number.