29 Jan
2006
29 Jan
'06
14:04
On Sun, 29 Jan 2006 13:36:18 +0530 <anuradha.vembu@wipro.com> wrote:
The function lltostr/ulltostr is available in Solaris. I found that this function is not present in stdlib.h in Linux.
Is there an equivalent of this function in Linux? Please do let me know whether there is an alternative for it. lltostr() is not a standard function (I don't have a copy of the standard with me through). In any case you can use sprintf: long long alonglong; char llstr[24]; ... sprintf(llstr, "%lld", alonglong); -- Jerry Feldman <gaf@blu.org> Boston Linux and Unix user group http://www.blu.org PGP key id:C5061EA9 PGP Key fingerprint:053C 73EC 3AC1 5C44 3E14 9245 FB00 3ED5 C506 1EA9