| 1222 | using runs of whitespace as the field delimiter. */ |
| 1223 | |
| 1224 | static void |
| 1225 | cut_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. */ |
nothing calls this directly
no test coverage detected