Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

simple_strtol(9) [centos man page]

SIMPLE_STRTOL(9)					     Basic C Library Functions						  SIMPLE_STRTOL(9)

NAME
simple_strtol - convert a string to a signed long SYNOPSIS
long simple_strtol(const char * cp, char ** endp, unsigned int base); ARGUMENTS
cp The start of the string endp A pointer to the end of the parsed string will be placed here base The number base to use DESCRIPTION
This function is obsolete. Please use kstrtol instead. COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 SIMPLE_STRTOL(9)

Check Out this Related Man Page

ltostr(3C)																ltostr(3C)

NAME
ltostr(), ultostr(), ltoa(), ultoa() - convert long integers to strings SYNOPSIS
Obsolescent Interfaces DESCRIPTION
Convert a signed long integer to the corresponding string representation in the specified base. The argument base must be between 2 and 36, inclusive. Convert an unsigned long integer to the corresponding string representation in the specified base. The argument base must be between 2 and 36, inclusive. Convert a signed long integer to the corresponding base 10 string representation, returning a pointer to the result. Convert an unsigned long integer to the corresponding base 10 string representation, returning a pointer to the result. These functions are smaller and faster than using for simple conversions (see printf(3S)). Obsolescent Interfaces convert long integers to strings. ERRORS
If the value of base is not between 2 and 36, and return NULL and set the external variable to ERANGE. WARNINGS
The return values for and point to data whose content is overwritten by subsequent calls to these functions by the same thread. and are obsolescent interface supported only for compatibility with existing DCE applications. New multi-threaded applications should use and AUTHOR
and were developed by HP. SEE ALSO
strtol(3C), printf(3S), thread_safety(5). ltostr(3C)
Man Page