From 951697aab4fa682cc2c55d399562278ad40da407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 26 Feb 2019 16:15:59 +0100 Subject: Minor cleanup. --- main.c | 14 -------------- parse.c | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/main.c b/main.c index 40c0e03f..3e0d005e 100644 --- a/main.c +++ b/main.c @@ -9,11 +9,6 @@ #include "graphs.h" #include "err.h" -#define TYPE content_line -// #include "hash.inc" -#include "trie.inc.h" -#undef TYPE - typedef struct { int argc; char** argv; @@ -58,15 +53,6 @@ int main (int argc, char** argv) { for (size_t j = 0; j < cal->components.length; j++) { vcomponent* ev = GET(VECT(vcomponent))(&cal->components, j); - LLIST(strbuf)* keys = KEYS(TRIE(content_line))(&ev->clines); - FOR(LLIST, strbuf, k, keys) { - char* mem = k->mem; - char buf[10000]; - buf[0] = '\0'; - FMT(content_line)(GET(TRIE(content_line))(&ev->clines, mem), buf); - printf("%s := %s\n", mem, buf); - } - if (strcmp(ev->type, "VEVENT") != 0) continue; printf("%3lu : %3lu | %s | %s\n", diff --git a/parse.c b/parse.c index 536c3917..035781ea 100644 --- a/parse.c +++ b/parse.c @@ -82,7 +82,7 @@ int parse_file(char* filename, FILE* f, vcomponent* root) { TRANSFER(s, &ctx.str); NEW(param_set, ps); - PUSH(LLIST(strbuf))(ps, s); + PUSH(param_set)(ps, s); PUSH(TRIE(param_set))(CLINE_CUR_PARAMS(&cline), param_key.mem, ps); strbuf_soft_reset (¶m_key); -- cgit v1.2.3