rockbox/firmware/libc
Michael Sevakis 77b3625763 Add mempcpy implementation
A GNU extension that returns dst + size instead of dst. It's a nice
shortcut when copying strings with a known size or back-to-back blocks
and you have to do it often.

May of course be called directly or alternately through
__builtin_mempcpy in some compiler versions.

For ASM on native targets, it is implemented as an alternate entrypoint
to memcpy which adds minimal code and overhead.

Change-Id: I4cbb3483f6df3c1007247fe0a95fd7078737462b
2014-08-29 22:06:57 -04:00
..
include Add mempcpy implementation 2014-08-29 22:06:57 -04:00
atoi.c
ctype.c
errno.c Base scheduler queues off linked lists and do cleanup/consolidation 2014-08-16 05:15:37 -04:00
gmtime.c gmtime: avoid a modulus 2012-03-18 10:09:08 +01:00
memchr.c
memcmp.c
mktime.c Rewrite filesystem code (WIP) 2014-08-30 03:48:23 +02:00
qsort.c
random.c
sprintf.c
sscanf.c Fix reds, inclusion of C files into plugins is tricky. 2010-12-02 21:29:05 +00:00
strcat.c
strchr.c
strcmp.c
strcpy.c
strncmp.c
strrchr.c
strstr.c
strtok.c