* @brief Format and print data to sequence file buffer (printf-style) * * @param[in,out] seq Pointer to sequence file structure * @param[in] f Format string (printf-style) * @param[in] ... Variable arguments matching format string */
| 426 | * @param[in] ... Variable arguments matching format string |
| 427 | */ |
| 428 | void dfs_seq_printf(struct dfs_seq_file *seq, const char *f, ...) |
| 429 | { |
| 430 | va_list args; |
| 431 | |
| 432 | va_start(args, f); |
| 433 | dfs_seq_vprintf(seq, f, args); |
| 434 | va_end(args); |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * @brief Write a single character to sequence file buffer |
no test coverage detected