aboutsummaryrefslogtreecommitdiffstats
path: root/user.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-07-06 00:39:47 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2007-07-06 00:39:47 +0100
commite90044208fc88636f843cdd188faa12e5db8c1c0 (patch)
tree1238997e7436af5192ce8e127a783d3d687a9ff4 /user.h
parent9da0bbfd42609f0f3864b5a16a3c1c378b7217c9 (diff)
parent19a8088455308088139d0b2f6a8d0d4fbf982b29 (diff)
Merging from devel. Added documentation for the join_chat command, adding
a debian/ tree and a merge from Jelmer (mainly unittest stuff).
Diffstat (limited to 'user.h')
-rw-r--r--user.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/user.h b/user.h
index d0a62bdc..c6b933bc 100644
--- a/user.h
+++ b/user.h
@@ -22,6 +22,8 @@
if not, write to the Free Software Foundation, Inc., 59 Temple Place,
Suite 330, Boston, MA 02111-1307 USA
*/
+#ifndef __USER_H__
+#define __USER_H__
typedef struct __USER
{
@@ -55,3 +57,5 @@ int user_del( irc_t *irc, char *nick );
G_MODULE_EXPORT user_t *user_find( irc_t *irc, char *nick );
G_MODULE_EXPORT user_t *user_findhandle( struct im_connection *ic, char *handle );
void user_rename( irc_t *irc, char *oldnick, char *newnick );
+
+#endif /* __USER_H__ */