summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-09-19 14:01:34 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-09-19 14:01:34 +0200
commitc7cd286be9d4ede3129a309e2668686be4646f07 (patch)
tree98e0767894d7fc816a37dca55ec73bafddc1bee5 /README.md
parent1be35411cf23c1b8cc909c2f2e1d1030e2f5015a (diff)
downloadprobe-c7cd286be9d4ede3129a309e2668686be4646f07.tar.gz
Added saving of struct to file in Zig and reading it back
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index fe1b931..22944a7 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ running it.
| [c-structs](./c-structs) | clang-17 | Saves and reads structs in/from binary files. |
| [zig-c-interop](./zig-c-interop) | zig-0.11.0 | Uses functions written in C from Zig code. |
| [zig-ppm](./zig-ppm) | zig-0.11.0 | Creates an image with random pixels in PPM image format. |
-| [zig-structs](./zig-structs) | zig-0.11.0 | Serialization of a struct into JSON and then reading it back. |
+| [zig-struct-json](./zig-struct-json) | zig-0.11.0 | Serialization of a struct into JSON and then reading it back. |
| [zig-telnet](./zig-telnet) | zig-0.11.0 | Connects to Redis server like it is a basic telnet server. |
| [zig-x11](./zig-x11) | zig-0.11.0 | Uses X11 to create a basic window without any bindings needed. |
| [zig-http](./zig-http) | zig-0.11.0 | Basic example of a HTTP 1.1 server without any routing etc. |
@@ -34,6 +34,7 @@ running it.
| [zig-os-props](./zig-os-props) | zig-0.11.0 | Detects properties of the target operating system. |
| [zig-tlv-encoding](./zig-tlv-encoding) | zig-0.13.0 | Naive implementation of TLV encoding in Zig. |
| [zig-embed](./zig-embed) | zig-0.13.0 | Embedding external resources in compiled binary. |
+| [zig-struct-bin](./zig-struct-bin) | zig-0.13.0 | Save a struct into binary file and then reading it back. |
## License