在c中对utf-8字符串进行url编码?
我应该自己编写还是有一个库函数已经可以做到这一点?我需要这个 pidgin 插件,所以如果 pidgin/purple/gnome 库中有东西,那将是理想的。但其他来源也很好。
Should I write my own or is there a library function that already does that? I need this for a pidgin plugin, so if there is something in the pidgin/purple/gnome libraries, that would be ideal. But other sources are fine, too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 apreq_encode() 来自 libapreq2。请注意,您的写入缓冲区需要为
3 * src_length + 1
大,这在文档片段中不一定清楚。You could use apreq_encode() from libapreq2. Note that your write buffer needs to be
3 * src_length + 1
big, which isn't necessarily clear from the doc snippet.