From c8fd7add997fa375d141a61b556f50ec5e60913e Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sat, 14 Jan 2023 08:40:22 +0200 Subject: [PATCH 42/42] shared.h: Mark inline functions for doxygen See osdn #46389 Signed-off-by: Marko Lindqvist --- utility/shared.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/utility/shared.h b/utility/shared.h index 4fbd41648d..94302db8c5 100644 --- a/utility/shared.h +++ b/utility/shared.h @@ -312,7 +312,7 @@ struct cf_sequence { }; }; -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of boolean type. ****************************************************************************/ static inline struct cf_sequence cf_bool_seq(char letter, bool value) @@ -326,7 +326,7 @@ static inline struct cf_sequence cf_bool_seq(char letter, bool value) return sequence; } -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of boolean type (result will be translated). ****************************************************************************/ @@ -341,7 +341,7 @@ static inline struct cf_sequence cf_trans_bool_seq(char letter, bool value) return sequence; } -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of character type (%c). ****************************************************************************/ static inline struct cf_sequence cf_char_seq(char letter, char value) @@ -355,7 +355,7 @@ static inline struct cf_sequence cf_char_seq(char letter, char value) return sequence; } -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of integer type (%d). ****************************************************************************/ static inline void cf_int_seq(char letter, int value, struct cf_sequence *out) @@ -365,7 +365,7 @@ static inline void cf_int_seq(char letter, int value, struct cf_sequence *out) out->int_value = value; } -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of hexadecimal type (%x). ****************************************************************************/ static inline struct cf_sequence cf_hexa_seq(char letter, int value) @@ -379,7 +379,7 @@ static inline struct cf_sequence cf_hexa_seq(char letter, int value) return sequence; } -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of float type (%f). ****************************************************************************/ static inline struct cf_sequence cf_float_seq(char letter, float value) @@ -393,7 +393,7 @@ static inline struct cf_sequence cf_float_seq(char letter, float value) return sequence; } -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of pointer type (%p). ****************************************************************************/ static inline struct cf_sequence cf_ptr_seq(char letter, const void *value) @@ -407,7 +407,7 @@ static inline struct cf_sequence cf_ptr_seq(char letter, const void *value) return sequence; } -/**************************************************************************** +/************************************************************************//** Build an argument for fc_snprintcf() of string type (%s). ****************************************************************************/ static inline struct cf_sequence cf_str_seq(char letter, const char *value) @@ -421,7 +421,7 @@ static inline struct cf_sequence cf_str_seq(char letter, const char *value) return sequence; } -/**************************************************************************** +/************************************************************************//** Must finish the list of the arguments of fc_snprintcf(). ****************************************************************************/ static inline struct cf_sequence cf_end(void) -- 2.39.0