In article <200402100931.i1A9V9d27894 at oboe.it.uc3m.es> you wrote:
> - buf[0] = 'a' + i / 26;
> + buf[0] = 'a' + i / 26 - 1;
> buf[1] = 'a' + i % 26;
What is it called when you start thinking to yourself, "you know, that
really should be ('z'-'a') and not 26"?
Madness.
Peter