summaryrefslogtreecommitdiffstats
path: root/libc/string/generic/memcopy.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix compilation problem whit the following config options:Carmelo Amoroso2008-10-011-3/+0
| | | | | | | | | UCLIBC_HAS_STRING_GENERIC_OPT=y UCLIBC_HAS_STRING_ARCH_OPT is not set by making WORD_COPY_FWD macros visible. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Add optimized memcpy implementation for sh4 (from Stuart Menefy ↵Carmelo Amoroso2008-09-091-0/+3
| | | | | | | | @STMicroelectronics). This implementation is based on 'backward copying'. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Add a couple of mips-specific string funcs.Manuel Novoa III2004-09-021-0/+150
Port the generic optimized string funcs from glibc, with some tweaks to cut their size a little. The main change is making memmove call memcpy for forward copying to trim redundant code. Make use of both the generic and arch-specific speed-optimized string funcs configurable. Arch-specific take precedence over generic, and generic takes precedence over basic size-optimized uClibc funcs.