2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 SAS/C function stcd_l().
10 /*****************************************************************************
22 Convert decimal string to a long integer
25 in - The decimal string to be converted
26 lvalue - Pointer to long where the result is saved
29 length of characters converted.
30 >= 1 means success. 0 means failure.
43 ******************************************************************************/
48 l
= strtol(in
, &s
, 10);