7 lines
67 B
C
7 lines
67 B
C
#pragma once
|
|
|
|
struct list {
|
|
void *content;
|
|
struct list *next;
|
|
};
|