| 9 | int quote_path_fully = 1; |
| 10 | |
| 11 | static inline int need_bs_quote(char c) |
| 12 | { |
| 13 | return (c == '\'' || c == '!'); |
| 14 | } |
| 15 | |
| 16 | /* Help to copy the thing properly quoted for the shell safety. |
| 17 | * any single quote is replaced with '\'', any exclamation point |
no outgoing calls
no test coverage detected