summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 17 insertions, 16 deletions
diff --git a/README.md b/README.md
index be5ffcf..490931c 100644
--- a/README.md
+++ b/README.md
@@ -16,22 +16,23 @@ running it.
16> also written in the most explicit way and lacks massively when it 16> also written in the most explicit way and lacks massively when it
17> comes to checking of errors etc. 17> comes to checking of errors etc.
18 18
19| Example | Compiler | What does it do? | 19| Example | Compiler | What does it do? |
20|----------------------------------|------------|----------------------------------------------------------------| 20|----------------------------------------|------------|----------------------------------------------------------------|
21| [c-asm](./c-asm) | clang-17 | Calls a function written in ASM from C code. | 21| [c-asm](./c-asm) | clang-17 | Calls a function written in ASM from C code. |
22| [c-embed](./c-embed) | clang-17 | Embedding external resources in compiled binary. | 22| [c-embed](./c-embed) | clang-17 | Embedding external resources in compiled binary. |
23| [c-signals](./c-signals) | clang-17 | Uses SIGUSR1 and SIGUSR2 as IPC mechanism. | 23| [c-signals](./c-signals) | clang-17 | Uses SIGUSR1 and SIGUSR2 as IPC mechanism. |
24| [c-structs](./c-structs) | clang-17 | Saves and reads structs in/from binary files. | 24| [c-structs](./c-structs) | clang-17 | Saves and reads structs in/from binary files. |
25| [zig-c-interop](./zig-c-interop) | zig-0.11.0 | Uses functions written in C from Zig code. | 25| [zig-c-interop](./zig-c-interop) | zig-0.11.0 | Uses functions written in C from Zig code. |
26| [zig-ppm](./zig-ppm) | zig-0.11.0 | Creates an image with random pixels in PPM image format. | 26| [zig-ppm](./zig-ppm) | zig-0.11.0 | Creates an image with random pixels in PPM image format. |
27| [zig-structs](./zig-structs) | zig-0.11.0 | Serialization of a struct into JSON and then reading it back. | 27| [zig-structs](./zig-structs) | zig-0.11.0 | Serialization of a struct into JSON and then reading it back. |
28| [zig-telnet](./zig-telnet) | zig-0.11.0 | Connects to Redis server like it is a basic telnet server. | 28| [zig-telnet](./zig-telnet) | zig-0.11.0 | Connects to Redis server like it is a basic telnet server. |
29| [zig-x11](./zig-x11) | zig-0.11.0 | Uses X11 to create a basic window without any bindings needed. | 29| [zig-x11](./zig-x11) | zig-0.11.0 | Uses X11 to create a basic window without any bindings needed. |
30| [zig-http](./zig-http) | zig-0.11.0 | Basic example of a HTTP 1.1 server without any routing etc. | 30| [zig-http](./zig-http) | zig-0.11.0 | Basic example of a HTTP 1.1 server without any routing etc. |
31| [zig-x11-box](./zig-x11-box) | zig-0.11.0 | Move a box around with arrow keys with Xlib and Zig. | 31| [zig-x11-box](./zig-x11-box) | zig-0.11.0 | Move a box around with arrow keys with Xlib and Zig. |
32| [zig-kv-store](./zig-kv-store) | zig-0.11.0 | Simple Key-value store that mimics memcached written in Zig. | 32| [zig-kv-store](./zig-kv-store) | zig-0.11.0 | Simple Key-value store that mimics memcached written in Zig. |
33| [zig-wad](./zig-wad) | zig-0.11.0 | Reads doom.wad and extracts the identification header. | 33| [zig-wad](./zig-wad) | zig-0.11.0 | Reads doom.wad and extracts the identification header. |
34| [zig-os-props](./zig-os-props) | zig-0.11.0 | Detects properties of the target operating system. | 34| [zig-os-props](./zig-os-props) | zig-0.11.0 | Detects properties of the target operating system. |
35| [zig-tlv-encoding](./zig-tlv-encoding) | zig-0.13.0 | Naive implementation of TLV encoding in Zig. |
35 36
36## License 37## License
37 38