summaryrefslogtreecommitdiff
path: root/riscos/save_html.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-06-02 21:23:27 +0000
committerJames Bursa <james@netsurf-browser.org>2004-06-02 21:23:27 +0000
commitcafb24a3366cc0efaffcfbe417988283e96dcda2 (patch)
tree0348f5d8b08e9fa90ae941272cfb4936d5119552 /riscos/save_html.c
parent6d76fb8e75ec270499858fb31128d7c85694def1 (diff)
downloadnetsurf-cafb24a3366cc0efaffcfbe417988283e96dcda2.tar.gz
netsurf-cafb24a3366cc0efaffcfbe417988283e96dcda2.tar.bz2
[project @ 2004-06-02 21:23:27 by bursa]
Remove obsolete files. svn path=/import/netsurf/; revision=918
Diffstat (limited to 'riscos/save_html.c')
-rw-r--r--riscos/save_html.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/riscos/save_html.c b/riscos/save_html.c
deleted file mode 100644
index 13c594db2..000000000
--- a/riscos/save_html.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * This file is part of NetSurf, http://netsurf.sourceforge.net/
- * Licensed under the GNU General Public License,
- * http://www.opensource.org/licenses/gpl-license
- * Copyright 2004 John M Bell <jmb202@ecs.soton.ac.uk>
- */
-
-#include <stdbool.h>
-#include <string.h>
-
-#include "oslib/osfile.h"
-
-#include "netsurf/utils/config.h"
-#include "netsurf/content/content.h"
-#include "netsurf/riscos/save_html.h"
-
-void save_as_html(struct content *c, char *path) {
-
- if (c->type != CONTENT_HTML) {
- return;
- }
-
- xosfile_save_stamped(path, 0xfaf, (byte*)c->data.html.source,
- (byte*)c->data.html.source+c->data.html.length);
-}