Description
Empty string "" should be parsed as an empty argument. When it is in the end of the command, it doesn't get parsed. If there is a space in the end, it gets parsed correctly.
There is a dummy app in attachment I used to test.
d:\test 1 2 "" <- no space in the end
|
argc 3
|
argv[0] test
|
argv[1] 1
|
argv[2] 2
|
|
d:\test 1 2 "" <- SPACE in the end
|
argc 3
|
argv[0] test
|
argv[1] 1
|
argv[2] 2
|
argv[3]
|