From 5d2b5cd51e64c3e49a536ef431c97dc1d0b78dfd Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Tue, 7 Aug 2018 14:58:32 -0400 Subject: Populate tab-complete list --- tab.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 tab.c (limited to 'tab.c') diff --git a/tab.c b/tab.c new file mode 100644 index 0000000..56fe649 --- /dev/null +++ b/tab.c @@ -0,0 +1,72 @@ +/* Copyright (C) 2018 Curtis McEnroe + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include + +#include "chat.h" + +static struct Entry { + char *word; + struct Entry *prev; + struct Entry *next; +} *head; + +static void prepend(struct Entry *entry) { + entry->prev = NULL; + entry->next = head; + if (head) head->prev = entry; + head = entry; +} + +static void remove(struct Entry *entry) { + if (entry->prev) entry->prev->next = entry->next; + if (entry->next) entry->next->prev = entry->prev; + if (head == entry) head = entry->next; +} + +void tabTouch(const char *word) { + for (struct Entry *entry = head; entry; entry = entry->next) { + if (strcmp(entry->word, word)) continue; + if (head == entry) return; + remove(entry); + prepend(entry); + return; + } + + struct Entry *entry = malloc(sizeof(*entry)); + if (!entry) err(EX_OSERR, "malloc"); + entry->word = strdup(word); + prepend(entry); +} + +void tabRemove(const char *word) { + for (struct Entry *entry = head; entry; entry = entry->next) { + if (strcmp(entry->word, word)) continue; + remove(entry); + free(entry->word); + free(entry); + return; + } +} + +void tabReplace(const char *prev, const char *next) { + tabTouch(prev); + free(head->word); + head->word = strdup(next); +} -- cgit 1.4.1