Skip to content

Commit 6fb0a4c

Browse files
authored
Update 2025-11-30-comptime-c-functions.md
1 parent bb66a3d commit 6fb0a4c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_posts/2025-11-30-comptime-c-functions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ title: "Comptime C functions"
44
date: 2025-11-29 12:00:00 +0100
55
---
66

7-
Compile-time function execution is great, but what if you're:
8-
1. Stuck with C.
9-
2. Don't want to use evil C macros.
10-
3. Want generic data structures that work for all types.
7+
Compile-time function execution is great, but what if:
8+
1. You're stuck with C.
9+
2. You don't want to use evil C macros.
10+
3. You want generic data structures that work for all types.
1111

1212
The below data structure showcase programs get optimized away at compile time by GCC and Clang, such that only the `printf()` at the end of `main()` is left.
1313

0 commit comments

Comments
 (0)