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. * */
| 123 | * |
| 124 | */ |
| 125 | static 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 | * |
no outgoing calls
no test coverage detected