self-referential c record imports

This commit is contained in:
2026-06-25 07:43:43 +02:00
parent 4cb0ad7f25
commit 9d1130b359
8 changed files with 65 additions and 8 deletions
@@ -0,0 +1,4 @@
typedef struct Node {
struct Node *next;
int value;
} Node;