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