~ashie/blog

17a11faebd1e2099064434a487ecf3927ca281f2 — Ash 25 days ago d313ca4
style(content): reword stuff
1 files changed, 2 insertions(+), 2 deletions(-)

M content/blog/my-favorite-way-to-safely-handle-c-structs-in-zig/index.md
M content/blog/my-favorite-way-to-safely-handle-c-structs-in-zig/index.md => content/blog/my-favorite-way-to-safely-handle-c-structs-in-zig/index.md +2 -2
@@ 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]: