Round x upward according to base, ie. returns the next integer larger or equal to x which is divisible by base.
x rounded upward according to base.
assert(ceil(8, 10) == 10); assert(ceil(32, 16) == 32); assert(ceil(101, 100) == 200);
See Implementation
Round x upward according to base, ie. returns the next integer larger or equal to x which is divisible by base.