summaryrefslogtreecommitdiff
path: root/render/list.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-05-31 10:45:32 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2014-05-31 10:45:32 +0100
commitc7ba173a6405eca736ee7032330c00f9939e7c37 (patch)
treefc5bc67432417aaa3140f60ec42ef9e5ba8f8bd9 /render/list.h
parent0cdc1029460cf86ec7186de4ca46bd3e4637bc3a (diff)
downloadnetsurf-c7ba173a6405eca736ee7032330c00f9939e7c37.tar.gz
netsurf-c7ba173a6405eca736ee7032330c00f9939e7c37.tar.bz2
Remove completely dead file.
NetSurf's list handling has been redundant and unused for years.
Diffstat (limited to 'render/list.h')
-rw-r--r--render/list.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/render/list.h b/render/list.h
deleted file mode 100644
index 626eb5941..000000000
--- a/render/list.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright 2005 Richard Wilson <info@tinct.net>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * NetSurf is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * NetSurf 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/** \file
- * HTML lists (interface).
- */
-
-#ifndef _NETSURF_RENDER_LIST_H_
-#define _NETSURF_RENDER_LIST_H_
-
-#include <stdbool.h>
-
-#include "css/css.h"
-
-void render_list_destroy_counters(void);
-bool render_list_counter_reset(const char *name, int value);
-bool render_list_counter_increment(const char *name, int value);
-bool render_list_counter_end_scope(const char *name);
-char *render_list_counter(const css_computed_content_item *css_counter);
-
-void render_list_test(void);
-
-#endif