Searched defs:input_table_multiple (Results 1 - 1 of 1) sorted by relevance

/systemd/src/test/
H A Dtest-strv.c57 static const char* const input_table_multiple[] = { variable
104 assert_se(strv_find((char **)input_table_multiple, "three"));
105 assert_se(!strv_find((char **)input_table_multiple, "four"));
109 assert_se(strv_find_prefix((char **)input_table_multiple, "o"));
110 assert_se(strv_find_prefix((char **)input_table_multiple, "one"));
111 assert_se(strv_find_prefix((char **)input_table_multiple, ""));
112 assert_se(!strv_find_prefix((char **)input_table_multiple, "xxx"));
113 assert_se(!strv_find_prefix((char **)input_table_multiple, "onee"));
119 r = strv_find_startswith((char **)input_table_multiple, "o");
122 r = strv_find_startswith((char **)input_table_multiple, "on
[all...]

Completed in 409 milliseconds