On Mon, 29 Jan 2018 13:09:07 -0800 Andrei Vagin <avagin@xxxxxxxxxxxxx> wrote: > On Mon, Jan 29, 2018 at 10:10:42PM +0300, Alexey Dobriyan wrote: > > On Mon, Jan 29, 2018 at 12:00:40AM -0800, Andrei Vagin wrote: > > > seq_put_decimal_ull_align(m, str, val, width) is equivalent of > > > seq_printf(m, "%s%*d", str, width, val), but it works much faster. > > > > It is called "minimum width", not alignment. > > Yes, you are right. And it's used to align numbers in output files. > > Maybe you could suggest a better name for this function? > _width? _min_width_? _pad?