MCPcopy Create free account
hub / github.com/coreutils/coreutils / dired_outbuf

Function dired_outbuf

src/ls.c:1015–1020  ·  view source on GitHub ↗

Output the buffer S, of length S_LEN, and increment DIRED_POS by S_LEN. */

Source from the content-addressed store, hash-verified

1013
1014/* Output the buffer S, of length S_LEN, and increment DIRED_POS by S_LEN. */
1015static void
1016dired_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. */
1023static void

Callers 3

dired_outstringFunction · 0.85
print_dirFunction · 0.85
print_long_formatFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected