| 351 | } |
| 352 | |
| 353 | static void |
| 354 | replace_problematic_chars (char *cell) |
| 355 | { |
| 356 | static int tty_out = -1; |
| 357 | if (tty_out < 0) |
| 358 | tty_out = isatty (STDOUT_FILENO); |
| 359 | |
| 360 | (tty_out ? replace_invalid_chars : replace_control_chars) (cell) ; |
| 361 | } |
| 362 | |
| 363 | |
| 364 | /* Dynamically allocate a row of pointers in TABLE, which |
no outgoing calls
no test coverage detected