@@ 39,8 39,8 @@ Although most other languages also have some form of interop with C it usually
involves writing glue code, re-declaring functions in the other language and
making it match the declarations in the foreign library, and then of course
somehow linking it together. Zig on the other hand can compile, link and also
-include C code and headers and using such functions is as simple as using any
-other Zig function.
+include C code and headers. Using imported C functions is as simple as using
+any other Zig function.
It is as easy as[^1]: