aboutsummaryrefslogtreecommitdiffstats
path: root/set.h
diff options
context:
space:
mode:
Diffstat (limited to 'set.h')
-rw-r--r--set.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/set.h b/set.h
index fd03a396..b6fffed9 100644
--- a/set.h
+++ b/set.h
@@ -23,6 +23,11 @@
Suite 330, Boston, MA 02111-1307 USA
*/
+#ifndef __SET_H__
+#define __SET_H__
+
+struct set;
+
/* This used to be specific to irc_t structures, but it's more generic now
(so it can also be used for account_t structs). It's pretty simple, but
so far pretty useful.
@@ -91,3 +96,5 @@ char *set_eval_bool( set_t *set, char *value );
char *set_eval_to_char( set_t *set, char *value );
char *set_eval_ops( set_t *set, char *value );
char *set_eval_charset( set_t *set, char *value );
+
+#endif /* __SET_H__ */