Function signatures across lines

This commit is contained in:
James Booth
2012-07-24 23:19:48 +01:00
parent 6bbad269db
commit 279737bada
18 changed files with 393 additions and 203 deletions

View File

@@ -37,7 +37,8 @@
static void _profanity_shutdown(void);
void profanity_run(void)
void
profanity_run(void)
{
gboolean cmd_result = TRUE;
@@ -66,7 +67,8 @@ void profanity_run(void)
}
void profanity_init(const int disable_tls)
void
profanity_init(const int disable_tls)
{
create_config_directory();
log_init();
@@ -79,7 +81,8 @@ void profanity_init(const int disable_tls)
atexit(_profanity_shutdown);
}
void _profanity_shutdown(void)
void
_profanity_shutdown(void)
{
jabber_disconnect();
gui_close();