MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / dfs_seq_printf

Function dfs_seq_printf

components/dfs/dfs_v2/src/dfs_seq_file.c:428–435  ·  view source on GitHub ↗

* @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 */

Source from the content-addressed store, hash-verified

426 * @param[in] ... Variable arguments matching format string
427 */
428void 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

Callers 14

pci_single_showFunction · 0.85
single_showFunction · 0.85
mnt_showFunction · 0.85
show_infoFunction · 0.85
seq_showFunction · 0.85
single_showFunction · 0.85
seq_showFunction · 0.85
single_showFunction · 0.85
route_showFunction · 0.85
seq_showFunction · 0.85
single_showFunction · 0.85
show_infoFunction · 0.85

Calls 1

dfs_seq_vprintfFunction · 0.85

Tested by

no test coverage detected