summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/util.c b/util.c
index 085304e..14dedc6 100644
--- a/util.c
+++ b/util.c
@@ -98,20 +98,6 @@ printhtmlencoded(const char *s, FILE *fp) {
}
void
-feedsfree(struct feed *f)
-{
- struct feed *next = NULL;
-
- for(; f; f = next) {
- next = f->next;
- f->next = NULL;
- free(f->name);
- f->name = NULL;
- free(f);
- }
-}
-
-void
printutf8pad(FILE *fp, const char *s, size_t len, int pad)
{
wchar_t w;