aboutsummaryrefslogtreecommitdiffstats
path: root/conf.h
diff options
context:
space:
mode:
authorIndent <please@skip.me>2015-02-19 02:47:20 -0300
committerdequis <dx@dxzone.com.ar>2015-02-20 19:50:54 -0300
commit5ebff60479fc7a9f7f50ac03b124c91d4e6ebe11 (patch)
tree9fc0d50cb1f4bc9768d9f00de94eafd876bb55b0 /conf.h
parentaf359b4316f9d392c6b752495a1b2ed631576ed8 (diff)
Reindent everything to K&R style with tabs
Used uncrustify, with the configuration file in ./doc/uncrustify.cfg Commit author set to "Indent <please@skip.me>" so that it's easier to skip while doing git blame.
Diffstat (limited to 'conf.h')
-rw-r--r--conf.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/conf.h b/conf.h
index a88396f9..1ee311bd 100644
--- a/conf.h
+++ b/conf.h
@@ -1,4 +1,4 @@
- /********************************************************************\
+/********************************************************************\
* BitlBee -- An IRC to other IM-networks gateway *
* *
* Copyright 2002-2004 Wilmer van der Gaast and others *
@@ -29,8 +29,7 @@
typedef enum runmode { RUNMODE_DAEMON, RUNMODE_FORKDAEMON, RUNMODE_INETD } runmode_t;
typedef enum authmode { AUTHMODE_OPEN, AUTHMODE_CLOSED, AUTHMODE_REGISTERED } authmode_t;
-typedef struct conf
-{
+typedef struct conf {
char *iface_in, *iface_out;
char *port;
int nofork;
@@ -56,7 +55,7 @@ typedef struct conf
char *cafile;
} conf_t;
-G_GNUC_MALLOC conf_t *conf_load( int argc, char *argv[] );
-void conf_loaddefaults( irc_t *irc );
+G_GNUC_MALLOC conf_t *conf_load(int argc, char *argv[]);
+void conf_loaddefaults(irc_t *irc);
#endif