]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/nios/include/asm/string.h
Move architecture-specific includes to arch/$ARCH/include/asm
[karo-tx-uboot.git] / arch / nios / include / asm / string.h
1 #ifndef __ASM_NIOS_STRING_H
2 #define __ASM_NIOS_STRING_H
3
4 #undef __HAVE_ARCH_STRRCHR
5 extern char * strrchr(const char * s, int c);
6
7 #undef __HAVE_ARCH_STRCHR
8 extern char * strchr(const char * s, int c);
9
10 #undef __HAVE_ARCH_MEMCPY
11 extern void * memcpy(void *, const void *, __kernel_size_t);
12
13 #undef __HAVE_ARCH_MEMMOVE
14 extern void * memmove(void *, const void *, __kernel_size_t);
15
16 #undef __HAVE_ARCH_MEMCHR
17 extern void * memchr(const void *, int, __kernel_size_t);
18
19 #undef __HAVE_ARCH_MEMSET
20 extern void * memset(void *, int, __kernel_size_t);
21
22 #undef __HAVE_ARCH_MEMZERO
23 extern void memzero(void *ptr, __kernel_size_t n);
24
25 #endif