On Sun, 7 Jun 1998, Ibrahim Haddad wrote:
> Hello,
>
> I have the Slakware distribution of Linux (kernel 2.0.29). I don't have
> neither "itoa" nor "ltoa". Any other alternatives? (or even, where can I
> get these functions from?)
It has nothing to do with the kernel but with the (g)libc.
I ve never heard of itoa/ltoa/ftoa, besides theirs supposed behaviour is
easily achieved with sprintf() like
char szBuffer[11];
long lNumber = 123L;
sprintf(szBuffer,"%ld",lNumber);
Hope this helps...
Marin
-= Why do we need gates in a world without fences? =-