comparison th_string.c @ 770:79f888e4616f

Fix Doxygen.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 12 Feb 2023 14:08:09 +0200
parents 600a3c08747f
children
comparison
equal deleted inserted replaced
769:8eca15bde07d 770:79f888e4616f
443 443
444 /** 444 /**
445 * A helper function that is given a pointer to a pointer of string, 445 * A helper function that is given a pointer to a pointer of string,
446 * which will be automatically freed (if necessary) and replaced with 446 * which will be automatically freed (if necessary) and replaced with
447 * a pointer to the newly created string. 447 * a pointer to the newly created string.
448 * @param[in,out] buf pointer to a char pointer/string 448 * @param[in,out] buf pointer to a th_char_t pointer/string
449 * @param[in] fmt format string 449 * @param[in] fmt format string
450 * @param[in] args variable arguments list structure 450 * @param[in] args variable arguments list structure
451 * @returns the resulting string or @c NULL pointer in case of error 451 * @returns the resulting string or @c NULL pointer in case of error
452 */ 452 */
453 th_char_t *th_pstr_vprintf(th_char_t **buf, const th_char_t *fmt, va_list ap) 453 th_char_t *th_pstr_vprintf(th_char_t **buf, const th_char_t *fmt, va_list ap)
461 461
462 /** 462 /**
463 * A helper function that is given a pointer to a pointer of string, 463 * A helper function that is given a pointer to a pointer of string,
464 * which will be automatically freed (if necessary) and replaced with 464 * which will be automatically freed (if necessary) and replaced with
465 * a pointer to the newly created string. 465 * a pointer to the newly created string.
466 * @param[in,out] buf pointer to a char pointer/string 466 * @param[in,out] buf pointer to a th_char_t pointer/string
467 * @param[in] fmt format string 467 * @param[in] fmt format string
468 * @param[in] ... optional printf arguments 468 * @param[in] ... optional printf arguments
469 * @returns the resulting string or @c NULL pointer in case of error 469 * @returns the resulting string or @c NULL pointer in case of error
470 */ 470 */
471 th_char_t *th_pstr_printf(th_char_t **buf, const th_char_t *fmt, ...) 471 th_char_t *th_pstr_printf(th_char_t **buf, const th_char_t *fmt, ...)