用于嵌入式Linux系统的标准C的库函数

源代码在线查看: atol.c

软件大小: 6528 K
上传用户: whyzhao
关键词: Linux 嵌入式 标准
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * Andy Wilson, 2-Oct-89.				 */								#include 				#include 								#ifndef _REENT_ONLY				long				_DEFUN (atol, (s), _CONST char *s)				{				  return strtol (s, NULL, 10);				}				#endif /* !_REENT_ONLY */								long				_DEFUN (_atol_r, (ptr, s), struct _reent *ptr _AND _CONST char *s)				{				  return _strtol_r (ptr, s, NULL, 10);				}											

相关资源