* Print one or more characters without adding newline. * * @param buf Buffer of >= count bytesi size. NULL pointer is not allowed! * @param count Number of characters to print. * @param ps Output method and its data. * @return Number of characters printed. */
| 95 | * @return Number of characters printed. |
| 96 | */ |
| 97 | static int printf_putnchars(const char *buf, size_t count, |
| 98 | struct printf_spec *ps) |
| 99 | { |
| 100 | return ps->write(buf, count, ps->data); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Print one character. |
no outgoing calls
no test coverage detected