Steve wrote: > How much function call overhead is this incurring? > Would it run faster if you took the digit function and just embedded > it directly into the itoa function? Practically nothing, since it's declared as "inline." The compiler *is* embedding it directly in the itoa function. >