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

/systemd/src/test/
H A Dtest-strv.c178 static void test_strv_unquote(const char *quoted, char **list) { function
659 test_strv_unquote(" foo=bar \"waldo\" zzz ", STRV_MAKE("foo=bar", "waldo", "zzz"));
660 test_strv_unquote("", STRV_MAKE_EMPTY);
661 test_strv_unquote(" ", STRV_MAKE_EMPTY);
662 test_strv_unquote(" ", STRV_MAKE_EMPTY);
663 test_strv_unquote(" x", STRV_MAKE("x"));
664 test_strv_unquote("x ", STRV_MAKE("x"));
665 test_strv_unquote(" x ", STRV_MAKE("x"));
666 test_strv_unquote(" \"x\" ", STRV_MAKE("x"));
667 test_strv_unquote(" '
[all...]

Completed in 12 milliseconds