[PATCH] Improve strncpy performance further
Ondřej Bílka
neleai@seznam.cz
Wed May 13 19:02:00 GMT 2015
On Wed, Apr 15, 2015 at 01:33:22PM +0100, Wilco Dijkstra wrote:
> ping
>
> > Wilco Dijkstra wrote:
> > > > Roland McGrath:
> > > > Has to be __strnlen.
> > >
> > > Good point, so it becomes:
> > >
> > > - return s;
> > > + size_t size = __strnlen (s2, n);
> > > + if (size != n)
> > > + memset (s1 + size, '\0', n - size);
> > > + return memcpy (s1, s2, size);
> >
> > OK for trunk with __strnlen?
> >
> > Wilco
Ok for me.
More information about the Libc-alpha
mailing list