|
static const char * | test_args_line_1 = "app.exe abc d e" |
|
static const char * | test_args_list_1 [] = { "app.exe", "abc", "d", "e", NULL } |
|
static const char * | test_args_line_2 = "app.exe abc \t def" |
|
static const char * | test_args_list_2 [] = { "app.exe", "abc", "def", NULL } |
|
static const char * | test_args_line_3 = "app.exe \"abc\" d e" |
|
static const char * | test_args_list_3 [] = { "app.exe", "abc", "d", "e", NULL } |
|
static const char * | test_args_line_4 = "app.exe a\\\\b d\"e f\"g h" |
|
static const char * | test_args_list_4 [] = { "app.exe", "a\\\\b", "de fg", "h", NULL } |
|
static const char * | test_args_line_5 = "app.exe a\\\\\\\"b c d" |
|
static const char * | test_args_list_5 [] = { "app.exe", "a\\\"b", "c", "d", NULL } |
|
static const char * | test_args_line_6 = "app.exe a\\\\\\\\\"b c\" d e" |
|
static const char * | test_args_list_6 [] = { "app.exe", "a\\\\b c", "d", "e", NULL } |
|
static const char * | test_args_line_7 = "app.exe a\\\\\\\\\"b c\" d e f\\\\\\\\\"g h\" i j" |
|
static const char * | test_args_list_7 [] |
|