2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 SAS C function stcl_d().
10 /*****************************************************************************
22 Convert an long integer to a decimal string
25 out - Result will be put into this string
26 uivalue - the value to convert
29 The number of characters written into the string
42 ******************************************************************************/
45 return sprintf(out
, "%ld", lvalue
);