what are differences in the strength and features in gnulib glib and glibc Thanks!
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
glibc
is a core C runtime library. It provides things like printf(3)
and fopen(3)
.
glib
is an object-based event loop and utility library written in C.
gnulib
is a library that provides an adapter from the POSIX API to the native API.
All three are used for completely different tasks.