mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-20 18:36:21 +00:00
Function signatures across lines
This commit is contained in:
@@ -30,13 +30,15 @@
|
||||
|
||||
#include "common.h"
|
||||
|
||||
void p_slist_free_full(GSList *items, GDestroyNotify free_func)
|
||||
void
|
||||
p_slist_free_full(GSList *items, GDestroyNotify free_func)
|
||||
{
|
||||
g_slist_foreach (items, (GFunc) free_func, NULL);
|
||||
g_slist_free (items);
|
||||
}
|
||||
|
||||
void create_config_directory()
|
||||
void
|
||||
create_config_directory()
|
||||
{
|
||||
GString *dir = g_string_new(getenv("HOME"));
|
||||
g_string_append(dir, "/.profanity");
|
||||
@@ -44,7 +46,8 @@ void create_config_directory()
|
||||
g_string_free(dir, TRUE);
|
||||
}
|
||||
|
||||
void create_dir(char *name)
|
||||
void
|
||||
create_dir(char *name)
|
||||
{
|
||||
int e;
|
||||
struct stat sb;
|
||||
|
||||
Reference in New Issue
Block a user