| 3299 | } |
| 3300 | |
| 3301 | static bool |
| 3302 | needs_quoting (char const *name) |
| 3303 | { |
| 3304 | char test[2]; |
| 3305 | size_t len = quotearg_buffer (test, sizeof test , name, -1, |
| 3306 | filename_quoting_options); |
| 3307 | return *name != *test || strlen (name) != len; |
| 3308 | } |
| 3309 | |
| 3310 | /* Add a file to the current table of files. |
| 3311 | Verify that the file exists, and print an error message if it does not. |