summaryrefslogtreecommitdiff
path: root/src/html-parse.h
diff options
context:
space:
mode:
authorhniksic <devnull@localhost>2001-11-29 10:55:52 -0800
committerhniksic <devnull@localhost>2001-11-29 10:55:52 -0800
commitb6bbc32e14f98a2d44a7656c8aefac3c69696d10 (patch)
treec2c08ba2f1ae40f9358d260247bfd60a5e39e991 /src/html-parse.h
parentb65661a8799dde56661aa40c4e59a6d8213d521b (diff)
downloadwget-b6bbc32e14f98a2d44a7656c8aefac3c69696d10.tar.gz
[svn] Guard against header files getting included twice.
Diffstat (limited to 'src/html-parse.h')
-rw-r--r--src/html-parse.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/html-parse.h b/src/html-parse.h
index dc2cba7e..5ff33b3b 100644
--- a/src/html-parse.h
+++ b/src/html-parse.h
@@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License
along with Wget; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+#ifndef HTML_PARSE_H
+#define HTML_PARSE_H
+
struct attr_pair {
char *name; /* attribute name */
char *value; /* attribute value */
@@ -42,3 +45,5 @@ struct taginfo {
void map_html_tags PARAMS ((const char *, int, const char **, const char **,
void (*) (struct taginfo *, void *), void *));
+
+#endif /* HTML_PARSE_H */