| 614 | } |
| 615 | |
| 616 | static int str_common(const char *str1, const char *str2) |
| 617 | { |
| 618 | const char *str = str1; |
| 619 | |
| 620 | while ((*str != 0) && (*str2 != 0) && (*str == *str2)) |
| 621 | { |
| 622 | str ++; |
| 623 | str2 ++; |
| 624 | } |
| 625 | |
| 626 | return (str - str1); |
| 627 | } |
| 628 | |
| 629 | #ifdef DFS_USING_POSIX |
| 630 | void msh_auto_complete_path(char *path) |
no outgoing calls
no test coverage detected