clang-format: update c/cc coding style

Update all cc code using .clang-format; please do so as well for future PRs
etc.; emacs has a handy 'clang-format' mode to make this automatic.

For comparing old changes with git blame, we can disregard this one using
--ignore-rev

(see https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame )
This commit is contained in:
Dirk-Jan C. Binnema
2021-10-20 12:18:15 +03:00
parent 09935cc4b3
commit 3dd721d5a3
111 changed files with 13851 additions and 14579 deletions

View File

@ -29,15 +29,13 @@ G_BEGIN_DECLS
*
* @return a random dir name, g_free when it's no longer needed
*/
char* test_mu_common_get_random_tmpdir (void);
char* test_mu_common_get_random_tmpdir(void);
/**
* set the output to /dev/null
*
*/
void black_hole (void);
void black_hole(void);
/**
* set the timezone
@ -46,15 +44,14 @@ void black_hole (void);
*
* @return the old timezone
*/
const char* set_tz (const char* tz);
const char* set_tz(const char* tz);
/**
* switch the locale to en_US.utf8, return TRUE if it succeeds
*
* @return TRUE if the switch succeeds, FALSE otherwise
*/
gboolean set_en_us_utf8_locale (void);
gboolean set_en_us_utf8_locale(void);
G_END_DECLS