Advertisement

C语言实例解析:strtol()函数使用说明

阅读量:

函数类别:

复制代码
    Name: strtol
    Prototype: long int strtol (const char *restrict string, char **restrict tailptr, int base)
    Description:
    The strtol (``string-to-long'') function converts the initial part of string to a signed integer, which is returned 
     as a value of type long int. 
    
    This function attempts to decompose string as follows: 
    
    
    	- A (possibly empty) sequence of whitespace characters. Which characters are whitespace is 
    	 determined by the isspace function . These are discarded.

概述:

C语言标准库函数

复制代码
    long int strtol (const char *restrict s

全部评论 (0)

还没有任何评论哟~