Sameer Patil wrote:
> i have a old code which uses "itoa" of stdlib .....how can i
> complie it with WINARM as newlib has no function named "itoa". Is there
> any replacement for itoa in newlib?
For some reason there is no itoa in newlib (yet), maybe because it's not
in the Standard. As a replacement there is always sprintf, but this by
cause an unacceptable memory-footprint if you do not use stdio already.
But there are a lot of itoa implementations freely available. Search for
example koders.com for itoa.c (check if the licenses match your needs).