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:
@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user