On 2021-09-01 02:13:05+0000, Maksym Sobolyev via GitGitGadget <gitgitgadget@xxxxxxxxx> wrote: > diff --git a/convert.h b/convert.h > index 5ee1c322058..2422e289784 100644 > --- a/convert.h > +++ b/convert.h > @@ -76,11 +76,16 @@ enum convert_crlf_action { > > struct convert_driver; > > +struct ident_action { > + const char *id; > + size_t id_len; > +}; Just out of curiousity, can we use strbuf instead of inventing new structure for this one? This struct is purely a string representation? -- Danh