2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 SAS/C function stcl_o().
10 /*****************************************************************************
22 Convert an long integer to an octal 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
, "%lo", lvalue
);