2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 SAS/C function stcu_d().
10 /*****************************************************************************
22 Convert an unsigned 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 ******************************************************************************/
44 return sprintf(out
, "%u", uivalue
);