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

Function cut_fields_ws

src/cut.c:1224–1231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1222 using runs of whitespace as the field delimiter. */
1223
1224static void
1225cut_fields_ws (FILE *stream)
1226{
1227 if (MB_CUR_MAX <= 1 && !trim_outer_whitespace)
1228 cut_fields_bytesearch (stream);
1229 else
1230 cut_fields_mb_any (stream, true);
1231}
1232
1233/* Process file FILE to standard output, using CUT_STREAM.
1234 Return true if successful. */

Callers

nothing calls this directly

Calls 2

cut_fields_bytesearchFunction · 0.85
cut_fields_mb_anyFunction · 0.85

Tested by

no test coverage detected