Linux 内核 - 整数到 ASCII
我需要在 Linux 内核中将整数转换为 ASCII 表示形式。我该怎么做?我找不到任何内置的转换方法。内核中是否已有这些或我需要添加自己的?
I need to convert an integer to it's ASCII representation from within the Linux Kernel. How can I do this? I can't find any built-in conversion methods. Are there any already in the kernel or do I need to add my own?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内核确实提供了
snprintf()
,这能满足您的需要吗?我也很好奇你在内核中用 ASCII 表示的整数做什么。您非常很可能只需要
printk()
。The kernel does offer
snprintf()
, would that suit your need? I'm also curious what you are doing with the ASCII representation of an integer within the kernel.It's very likely that you just want
printk()
.