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. * */
| 139 | * |
| 140 | */ |
| 141 | static 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 | * |