diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-27 12:42:00 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-27 12:42:00 +0200 |
commit | 7e0c4483a717e59762d878dadd6120ac8d54e2a2 (patch) | |
tree | dd75640451685318cbbd4d14cbe8df0520e8dcaa | |
parent | 78bf2b74a6abfd7f58f97e4a8f2000e10ea884c2 (diff) |
Reformatted functions
-rw-r--r-- | FICS/obsproc.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/FICS/obsproc.c b/FICS/obsproc.c index 55d949a..32bf99e 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -549,14 +549,16 @@ PRIVATE int old_mail_moves(int p,int mail, param_list param) return COM_OK; } -PUBLIC int com_oldmoves(int p, param_list param) +PUBLIC int +com_oldmoves(int p, param_list param) { - return old_mail_moves(p , 0, param); + return old_mail_moves(p, 0, param); } -PUBLIC int com_mailoldmoves(int p, param_list param) +PUBLIC int +com_mailoldmoves(int p, param_list param) { - return old_mail_moves(p , 1, param); + return old_mail_moves(p, 1, param); } PUBLIC void |