42_KFS/libbozo/headers/list.h

7 lines
67 B
C
Raw Normal View History

#pragma once
struct list {
void *content;
struct list *next;
};