/*1* Copyright (C) 2004 Microtronix Datacom Ltd2*3* This file is subject to the terms and conditions of the GNU General Public4* License. See the file "COPYING" in the main directory of this archive5* for more details.6*/78#ifndef _ASM_NIOS2_STRING_H9#define _ASM_NIOS2_STRING_H1011#ifdef __KERNEL__1213#define __HAVE_ARCH_MEMSET14#define __HAVE_ARCH_MEMCPY15#define __HAVE_ARCH_MEMMOVE1617extern void *memset(void *s, int c, size_t count);18extern void *memcpy(void *d, const void *s, size_t count);19extern void *memmove(void *d, const void *s, size_t count);2021#endif /* __KERNEL__ */2223#endif /* _ASM_NIOS2_STRING_H */242526