comparison th_string.h @ 618:64fd686197d4

Fix a Doxygen comment.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 17 Jan 2020 03:41:46 +0200
parents a3d5ddbb6f16
children c54772789f32
comparison
equal deleted inserted replaced
617:a3d5ddbb6f16 618:64fd686197d4
96 * @returns the character @p ch cast to int or @c EOF in case of error 96 * @returns the character @p ch cast to int or @c EOF in case of error
97 */ 97 */
98 typedef int (*th_vprintf_putch)(th_vprintf_ctx *ctx, const char ch); 98 typedef int (*th_vprintf_putch)(th_vprintf_ctx *ctx, const char ch);
99 99
100 100
101 /** @def Internal *printf() implementation helper function typedef 101 /** @brief
102 * Internal *printf() implementation helper function typedef
102 * for alternative formatting, such as octal and hexadecimal 103 * for alternative formatting, such as octal and hexadecimal
103 */ 104 */
104 typedef char * (*th_vprintf_altfmt_func)( 105 typedef char * (*th_vprintf_altfmt_func)(
105 const char *buf, const size_t len, const int vret, int *prec, int *flags, int *outlen); 106 const char *buf, const size_t len, const int vret, int *prec, int *flags, int *outlen);
106 107