> >+ case 'd': > >+ case 'i': > > intdata = true; > > break; > >+ case 'o': > >+ case 'u': > >+ case 'x': > >+ case 'X': > > Convention is X before x in usage() and friends, so I guess that'd > make sense here (and below) too.
Thanks. I deliberately used the same order as in printf(3) and the C11 standard, so I left that as it was. If this makes your eyes twitch too hard, feel free to change it. :)
