Blob


1 #include <sys/queue.h>
3 TAILQ_HEAD(tailhead, entry);
4 struct entry {
5 char *text;
6 TAILQ_ENTRY(entry) entries;
7 };