blob: fa33275010fad375c5a6a9a1bca71d03935efc43 [file] [log] [blame]
wdenk4a551702003-10-08 23:26:14 +00001#ifndef __ASM_NIOS_STRING_H
2#define __ASM_NIOS_STRING_H
3
4#undef __HAVE_ARCH_STRRCHR
5extern char * strrchr(const char * s, int c);
6
7#undef __HAVE_ARCH_STRCHR
8extern char * strchr(const char * s, int c);
9
10#undef __HAVE_ARCH_MEMCPY
11extern void * memcpy(void *, const void *, __kernel_size_t);
12
13#undef __HAVE_ARCH_MEMMOVE
14extern void * memmove(void *, const void *, __kernel_size_t);
15
16#undef __HAVE_ARCH_MEMCHR
17extern void * memchr(const void *, int, __kernel_size_t);
18
19#undef __HAVE_ARCH_MEMSET
20extern void * memset(void *, int, __kernel_size_t);
21
22#undef __HAVE_ARCH_MEMZERO
23extern void memzero(void *ptr, __kernel_size_t n);
24
25#endif