diff options
| -rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -80,7 +80,7 @@ int usage(const char *cmd) int cnt = 0; xs_list_foreach(l, v) { - if (xs_startswith(v, cmd)) { + if (xs_str_in(v, cmd) != -1) { printf("%s\n", v); cnt++; } |