"Johannes Schindelin via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Johannes Schindelin <johannes.schindelin@xxxxxx> > > In C, the natural order is for `argc` to come before `argv` by virtue of > the `main()` function declaring the parameters in precisely that order. > > It is confusing & distracting, then, when readers familiar with the C > language read code where that order is switched around. > > Let's just change the order and avoid that type of developer friction. Thanks. This did look disturbing to me every time I peeked into this part of the code. To some it may be insignificant detail, but these things add up. The result is much nicer.