I'm trying to replicate the GNU coding standard using uncrustify. My program has the following function declarations,
static void connect_to_server_cb1 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static gboolean connect_to_server_cb2 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void connect_to_server_cb3 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
I'm expecting output as follows,
static void connect_to_server_cb1 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static gboolean connect_to_server_cb2 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
static void connect_to_server_cb3 (GObject *source_object,
GAsyncResult *result,
gpointer user_data);
Which config option I should try to achive this?