]> sjero.net Git - wget/blobdiff - src/convert.h
[svn] Use sets/hash-tables instead of "slists". Remove slist implementation from
[wget] / src / convert.h
index fff8410f009966af6224a518689658a33b8b90c3..53b0c97ad94c7dcbe2ee9f11a3c02e6355515ae1 100644 (file)
@@ -30,6 +30,9 @@ so, delete this exception statement from your version.  */
 #ifndef CONVERT_H
 #define CONVERT_H
 
+struct hash_table;             /* forward decl */
+extern struct hash_table *downloaded_html_set;
+
 enum convert_options {
   CO_NOCONVERT = 0,            /* don't convert this URL */
   CO_CONVERT_TO_RELATIVE,      /* convert to relative, e.g. to
@@ -96,5 +99,6 @@ void register_redirection PARAMS ((const char *, const char *));
 void register_html PARAMS ((const char *, const char *));
 void register_delete_file PARAMS ((const char *));
 void convert_all_links PARAMS ((void));
+void convert_cleanup PARAMS ((void));
 
 #endif /* CONVERT_H */