aboutsummaryrefslogtreecommitdiffstats
path: root/user.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-01-21 22:17:11 +0100
committerJelmer Vernooij <jelmer@samba.org>2007-01-21 22:17:11 +0100
commited5df815732d311b228993627f5d8b8c8e3eb4e0 (patch)
tree1f5c4963491914f8efbcdf2838ff2cb716e89267 /user.h
parent7bee5af91e56f1e58232b895fd40c367aec67e8a (diff)
Add unit testing for user code
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 b8896d92..176e364e 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 gaim_connection *gc, char *handle );
void user_rename( irc_t *irc, char *oldnick, char *newnick );
+
+#endif /* __USER_H__ */