summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-09-18 21:24:07 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-09-18 21:24:07 +0200
commit0fe94b0237bf1ef0212e129abfb56019d3e1c361 (patch)
tree1dbd67069703f421d3c211aa8a99fd9056d0009a /README.md
parent98bbeb681aaba4e1a20ad558f495f79f73752ca9 (diff)
downloadprobe-0fe94b0237bf1ef0212e129abfb56019d3e1c361.tar.gz
Added header for compiler versions in Readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index f5a9aa6..4a82268 100644
--- a/README.md
+++ b/README.md
@@ -10,12 +10,12 @@ reference them later if I need to.
Every test has it's own `Makefile` so please check that before you try
running it.
-| Example | | What does it do? |
+| Example | Compiler | What does it do? |
|----------------------------------|------------|----------------------------------------------------------------|
-| [c-asm](./c-asm) | clang-17 | Calls a function written in ASM from C code. |
-| [c-embed](./c-embed) | clang-17 | Embedding external resources in compiled binary. |
-| [c-signals](./c-signals) | clang-17 | Uses SIGUSR1 and SIGUSR2 as IPC mechanism. |
-| [c-structs](./c-structs) | clang-17 | Saves and reads structs in/from binary files. |
+| [c-asm](./c-asm) | clang-17 | Calls a function written in ASM from C code. |
+| [c-embed](./c-embed) | clang-17 | Embedding external resources in compiled binary. |
+| [c-signals](./c-signals) | clang-17 | Uses SIGUSR1 and SIGUSR2 as IPC mechanism. |
+| [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. |