Search notes:

cmd.exe: Parse the command line

Splitting command line into arguments when executing an exe
Splitting command line into arguments when invoking a batch file

TODO

The WinAPI function CommandLineToArgvW() (in shell32, of which there is no corresponding CommandLineToArgvA).

See also

cmd.exe
The function parse_cmdline() in Microsoft's CRT (C Run-Time) source unit stdargv.c.
The command line argument parsing cookbook for batch files.
The UCRT source file argv_parsing.cpp.

Index