diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-04-21 17:08:00 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-04-21 17:08:00 +0200 |
commit | 3bc481239c1862ab6c04202fa825ed79af368c5f (patch) | |
tree | 8a982ed826cd29ba14c296b12167d3387d61e828 /FICS | |
parent | 88911a92eda456905fab1f7eeb3b279b3d06600e (diff) |
Reformatted functions
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/obsproc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/FICS/obsproc.c b/FICS/obsproc.c index 62e13f0..c8c406c 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -1115,18 +1115,18 @@ stored_mail_moves(int p, int mail, param_list param) game_remove(g); } -/* Tidied up a bit but still messy */ - -PUBLIC int com_mailstored(int p, param_list param) +PUBLIC int +com_mailstored(int p, param_list param) { - stored_mail_moves(p, 1, param); - return COM_OK; + stored_mail_moves(p, 1, param); + return COM_OK; } -PUBLIC int com_smoves(int p, param_list param) +PUBLIC int +com_smoves(int p, param_list param) { - stored_mail_moves(p, 0, param); - return COM_OK; + stored_mail_moves(p, 0, param); + return COM_OK; } PUBLIC int |