| 703 | } |
| 704 | |
| 705 | static char *find_name(struct strbuf *root, |
| 706 | const char *line, |
| 707 | char *def, |
| 708 | int p_value, |
| 709 | int terminate) |
| 710 | { |
| 711 | if (*line == '"') { |
| 712 | char *name = find_name_gnu(root, line, p_value); |
| 713 | if (name) |
| 714 | return name; |
| 715 | } |
| 716 | |
| 717 | return find_name_common(root, line, def, p_value, NULL, terminate); |
| 718 | } |
| 719 | |
| 720 | static char *find_name_traditional(struct strbuf *root, |
| 721 | const char *line, |
no test coverage detected