MCPcopy Create free account
hub / github.com/HelenOS/helenos / printf_putnchars

Function printf_putnchars

kernel/generic/src/printf/printf_core.c:125–129  ·  view source on GitHub ↗

Print one or more characters without adding newline. * * @param buf Buffer holding characters with size of * at least size bytes. NULL is not allowed! * @param size Size of the buffer in bytes. * @param ps Output method and its data. * * @return Number of characters printed. * */

Source from the content-addressed store, hash-verified

123 *
124 */
125static int printf_putnchars(const char *buf, size_t size,
126 printf_spec_t *ps)
127{
128 return ps->str_write((void *) buf, size, ps->data);
129}
130
131/** Print one or more wide characters without adding newline.
132 *

Callers 3

printf_putstrFunction · 0.70
print_strFunction · 0.70
printf_coreFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected