2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 SAS C function stch_l().
11 /*****************************************************************************
23 Convert hexadecimal string to a long integer
26 in - The hexadecimal string to be converted
27 lvalue - Pointer to long where the result is saved
30 Number of characters converted
43 ******************************************************************************/
47 *lvalue
= strtoul(in
, &endptr
, 16);