/* * Copyright (C) 1996-2018 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* DEBUG: section 03 Configuration File Parsing */ #include "squid.h" #include "MemBuf.h" #include "wordlist.h" void wordlistDestroy(wordlist ** list) { wordlist *w = NULL; while ((w = *list) != NULL) { *list = w->next; safe_free(w->key); delete w; } *list = NULL; } const char * wordlistAdd(wordlist ** list, const char *key) { while (*list) list = &(*list)->next; *list = new wordlist; (*list)->key = xstrdup(key); (*list)->next = NULL; return (*list)->key; } void wordlistJoin(wordlist ** list, wordlist ** wl) { while (*list) list = &(*list)->next; *list = *wl; *wl = NULL; } void wordlistAddWl(wordlist ** list, wordlist * wl) { while (*list) list = &(*list)->next; for (; wl; wl = wl->next, list = &(*list)->next) { *list = new wordlist(); (*list)->key = xstrdup(wl->key); (*list)->next = NULL; } } void wordlistCat(const wordlist * w, MemBuf * mb) { while (NULL != w) { mb->Printf("%s\n", w->key); w = w->next; } } wordlist * wordlistDup(const wordlist * w) { wordlist *D = NULL; while (NULL != w) { wordlistAdd(&D, w->key); w = w->next; } return D; } SBufList ToSBufList(wordlist *wl) { SBufList rv; while (wl != NULL) { rv.push_back(SBuf(wl->key)); wl = wl->next; } return rv; }