18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifndef _ASM_IA64_STRING_H
38c2ecf20Sopenharmony_ci#define _ASM_IA64_STRING_H
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_ci/*
68c2ecf20Sopenharmony_ci * Here is where we want to put optimized versions of the string
78c2ecf20Sopenharmony_ci * routines.
88c2ecf20Sopenharmony_ci *
98c2ecf20Sopenharmony_ci * Copyright (C) 1998-2000, 2002 Hewlett-Packard Co
108c2ecf20Sopenharmony_ci *	David Mosberger-Tang <davidm@hpl.hp.com>
118c2ecf20Sopenharmony_ci */
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci#define __HAVE_ARCH_STRLEN	1 /* see arch/ia64/lib/strlen.S */
158c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMSET	1 /* see arch/ia64/lib/memset.S */
168c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMCPY	1 /* see arch/ia64/lib/memcpy.S */
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ciextern __kernel_size_t strlen (const char *);
198c2ecf20Sopenharmony_ciextern void *memcpy (void *, const void *, __kernel_size_t);
208c2ecf20Sopenharmony_ciextern void *memset (void *, int, __kernel_size_t);
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ci#endif /* _ASM_IA64_STRING_H */
23