| 844 | /* Estimate length of col_sep_string with option -S. */ |
| 845 | |
| 846 | static void |
| 847 | separator_string (char const *optarg_S) |
| 848 | { |
| 849 | size_t len = strlen (optarg_S); |
| 850 | if (INT_MAX < len) |
| 851 | integer_overflow (); |
| 852 | col_sep_length = len; |
| 853 | col_sep_string = optarg_S; |
| 854 | } |
| 855 | |
| 856 | int |
| 857 | main (int argc, char **argv) |
no test coverage detected