Files
brolang/examples/interop/recursive/include/native.h
T

5 lines
62 B
C

typedef struct Node {
struct Node *next;
int value;
} Node;