7 lines
80 B
C
7 lines
80 B
C
#include <memory.h>
|
|
|
|
struct linkedlist {
|
|
u32 node;
|
|
linkedlist *next;
|
|
};
|