Blame


1 6509b181 2022-12-30 thomas #include <sys/queue.h>
2 6509b181 2022-12-30 thomas
3 6509b181 2022-12-30 thomas TAILQ_HEAD(tailhead, entry);
4 6509b181 2022-12-30 thomas struct entry {
5 6509b181 2022-12-30 thomas char *text;
6 6509b181 2022-12-30 thomas TAILQ_ENTRY(entry) entries;
7 6509b181 2022-12-30 thomas };