Message-Id: <200006091528.SAA10410@mailgw1.netvision.net.il> Date: Fri, 09 Jun 2000 18:26:20 +0200 X-Mailer: Emacs 20.6 (via feedmail 8.1.emacs20_6 I) and Blat ver 1.8.5b From: "Eli Zaretskii" To: Kalum Somaratna aka Grendel CC: djgpp AT delorie DOT com In-reply-to: (message from Kalum Somaratna aka Grendel on Fri, 9 Jun 2000 08:53:09 +0600 (LKT)) Subject: Re: itoa present in DJGPP but not GLIBC why? References: Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > Date: Fri, 9 Jun 2000 08:53:09 +0600 (LKT) > From: Kalum Somaratna aka Grendel > > I would appreciate it if anyone could tell me of the equivalent function > for itoa (which is available in the DJGPP library) from the GNU library.. `itoa' is non-portable, it exists for compatibility with other compilers. The portable way is to use `sprintf'.