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

Function dump_hexl_mode_trailer

src/od.c:591–602  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

589#undef PRINT_FLOATTYPE
590
591static void
592dump_hexl_mode_trailer (idx_t n_bytes, char const *block)
593{
594 fputs (" >", stdout);
595 for (idx_t i = n_bytes; i > 0; i--)
596 {
597 unsigned char c = *block++;
598 unsigned char c2 = (isprint (c) ? c : '.');
599 putchar (c2);
600 }
601 putchar ('<');
602}
603
604static void
605print_named_ascii (idx_t fields, idx_t blank, void const *block,

Callers 1

write_blockFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected