From e59c6ff9dd97a478f3be566db9c9f7f3af08c15a Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Fri, 21 May 2021 01:41:12 +0300 Subject: [PATCH 53/53] Inline is_server() See osdn #42331 Signed-off-by: Marko Lindqvist --- common/game.c | 8 -------- common/game.h | 12 +++++++++++- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/common/game.c b/common/game.c index 866af9036b..522a9f7793 100644 --- a/common/game.c +++ b/common/game.c @@ -62,14 +62,6 @@ bool am_i_server = FALSE; static void game_defaults(bool keep_ruleset_value); -/**********************************************************************//** - Is program type server? -**************************************************************************/ -bool is_server(void) -{ - return am_i_server; -} - /**********************************************************************//** Set program type to server. **************************************************************************/ diff --git a/common/game.h b/common/game.h index ac370fc741..1717ae5959 100644 --- a/common/game.h +++ b/common/game.h @@ -293,9 +293,19 @@ struct civ_game { } callbacks; }; -bool is_server(void); +extern bool am_i_server; + +/**********************************************************************//** + Is the program type server? +**************************************************************************/ +static inline bool is_server(void) +{ + return am_i_server; +} + void i_am_server(void); void i_am_client(void); + static inline void i_am_tool(void) { i_am_server(); /* No difference between a tool and server at the moment */ -- 2.30.2