在哪里可以下载 stdlib.h 中声明的函数的源代码?
在哪里可以下载 stdlib.h 的最新或标准库的源代码?我想看看那些函数是如何实现的,比如atoi、strtol等?
Where can I download the source code of the latest or standard library for stdlib.h? I would like to see how are those functions are implemented, such as atoi, strtol, etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的建议是您查看 GNU C 库源代码。您可以在这里下载:http://www.gnu.org/s/libc/
My suggestion would be that you check out the GNU C Library source code for this. You can download it here: http://www.gnu.org/s/libc/
那是在 libc 中,例如 glibc、dietlibc 等。检查您的操作系统以查看它使用哪个 libc,以及在哪里(如果)可以下载其源代码。
That is in the libc, such as glibc, dietlibc, etc. Check your OS to see which libc it uses, and where (if) you can download its source.