You can now add code snippets to your capsules. Here's a linked list node in C.
typedef struct Node { int value; void *next; } Node;