1 /* SPDX-License-Identifier: GPL-2.0 */
4 * Copyright IBM Corp. 1999
5 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
8 #ifndef _S390_STRING_H_
9 #define _S390_STRING_H_
11 #ifndef _LINUX_TYPES_H
12 #include <linux/types.h>
15 #define __HAVE_ARCH_MEMCHR /* inline & arch function */
16 #define __HAVE_ARCH_MEMCMP /* arch function */
17 #define __HAVE_ARCH_MEMCPY /* gcc builtin & arch function */
18 #define __HAVE_ARCH_MEMMOVE /* gcc builtin & arch function */
19 #define __HAVE_ARCH_MEMSCAN /* inline & arch function */
20 #define __HAVE_ARCH_MEMSET /* gcc builtin & arch function */
21 #define __HAVE_ARCH_STRCAT /* inline & arch function */
22 #define __HAVE_ARCH_STRCMP /* arch function */
23 #define __HAVE_ARCH_STRCPY /* inline & arch function */
24 #define __HAVE_ARCH_STRLCAT /* arch function */
25 #define __HAVE_ARCH_STRLCPY /* arch function */
26 #define __HAVE_ARCH_STRLEN /* inline & arch function */
27 #define __HAVE_ARCH_STRNCAT /* arch function */
28 #define __HAVE_ARCH_STRNCPY /* arch function */
29 #define __HAVE_ARCH_STRNLEN /* inline & arch function */
30 #define __HAVE_ARCH_STRRCHR /* arch function */
31 #define __HAVE_ARCH_STRSTR /* arch function */
33 /* Prototypes for non-inlined arch strings functions. */
34 extern int memcmp(const void *, const void *, size_t);
35 extern void *memcpy(void *, const void *, size_t);
36 extern void *memset(void *, int, size_t);
37 extern void *memmove(void *, const void *, size_t);
38 extern int strcmp(const char *,const char *);
39 extern size_t strlcat(char *, const char *, size_t);
40 extern size_t strlcpy(char *, const char *, size_t);
41 extern char *strncat(char *, const char *, size_t);
42 extern char *strncpy(char *, const char *, size_t);
43 extern char *strrchr(const char *, int);
44 extern char *strstr(const char *, const char *);
46 #undef __HAVE_ARCH_STRCHR
47 #undef __HAVE_ARCH_STRNCHR
48 #undef __HAVE_ARCH_STRNCMP
49 #undef __HAVE_ARCH_STRPBRK
50 #undef __HAVE_ARCH_STRSEP
51 #undef __HAVE_ARCH_STRSPN
53 #if !defined(IN_ARCH_STRING_C)
55 static inline void *memchr(const void * s, int c, size_t n)
57 register int r0 asm("0") = (char) c;
58 const void *ret = s + n;
66 : "+a" (ret), "+&a" (s) : "d" (r0) : "cc", "memory");
70 static inline void *memscan(void *s, int c, size_t n)
72 register int r0 asm("0") = (char) c;
73 const void *ret = s + n;
78 : "+a" (ret), "+&a" (s) : "d" (r0) : "cc", "memory");
82 static inline char *strcat(char *dst, const char *src)
84 register int r0 asm("0") = 0;
93 : "=&a" (dummy), "+a" (dst), "+a" (src)
94 : "d" (r0), "0" (0) : "cc", "memory" );
98 static inline char *strcpy(char *dst, const char *src)
100 register int r0 asm("0") = 0;
106 : "+&a" (dst), "+&a" (src) : "d" (r0)
111 static inline size_t strlen(const char *s)
113 register unsigned long r0 asm("0") = 0;
119 : "+d" (r0), "+a" (tmp) : : "cc", "memory");
120 return r0 - (unsigned long) s;
123 static inline size_t strnlen(const char * s, size_t n)
125 register int r0 asm("0") = 0;
127 const char *end = s + n;
132 : "+a" (end), "+a" (tmp) : "d" (r0) : "cc", "memory");
135 #else /* IN_ARCH_STRING_C */
136 void *memchr(const void * s, int c, size_t n);
137 void *memscan(void *s, int c, size_t n);
138 char *strcat(char *dst, const char *src);
139 char *strcpy(char *dst, const char *src);
140 size_t strlen(const char *s);
141 size_t strnlen(const char * s, size_t n);
142 #endif /* !IN_ARCH_STRING_C */
144 #endif /* __S390_STRING_H_ */