Output the buffer S, of length S_LEN, and increment DIRED_POS by S_LEN. */
| 1013 | |
| 1014 | /* Output the buffer S, of length S_LEN, and increment DIRED_POS by S_LEN. */ |
| 1015 | static void |
| 1016 | dired_outbuf (char const *s, size_t s_len) |
| 1017 | { |
| 1018 | dired_pos += s_len; |
| 1019 | fwrite (s, sizeof *s, s_len, stdout); |
| 1020 | } |
| 1021 | |
| 1022 | /* Output the string S, and increment DIRED_POS by its length. */ |
| 1023 | static void |
no outgoing calls
no test coverage detected