| 239 | } |
| 240 | |
| 241 | static bool |
| 242 | parse_dir_option(char *opt, unsigned int *dest) |
| 243 | { |
| 244 | for (unsigned int i = 0; i < ARRAY_SIZE(dir_flag_names); i++) |
| 245 | if (!strcmp(opt, dir_flag_names[i])) |
| 246 | { |
| 247 | *dest = 1U << i; |
| 248 | return true; |
| 249 | } |
| 250 | return false; |
| 251 | } |
| 252 | |
| 253 | static bool |
| 254 | valid_filesystem_p(const char *fs) |
no outgoing calls
no test coverage detected
searching dependent graphs…