]> Git Repo - J-u-boot.git/blame - include/asm-nios/string.h
Added config option CONFIG_SILENT_CONSOLE. See doc/README.silent
[J-u-boot.git] / include / asm-nios / string.h
CommitLineData
4a551709
WD
1#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
This page took 0.026869 seconds and 4 git commands to generate.