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

Function printf_wputnchars

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

Print one or more wide characters without adding newline. * * @param buf Buffer holding wide 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 wide characters printed. * */

Source from the content-addressed store, hash-verified

139 *
140 */
141static int printf_wputnchars(const char32_t *buf, size_t size,
142 printf_spec_t *ps)
143{
144 return ps->wstr_write((void *) buf, size, ps->data);
145}
146
147/** Print string without adding a newline.
148 *

Callers 1

print_wstrFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected