Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / i386 / string-inlines.c
blob8e94ea1504416aa2b3f15366bb9418cb8b743a26
1 /* Copyright (C) 1999-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 /* <bits/string.h> and <bits/string2.h> declare some extern inline
19 functions. These functions are declared additionally here if
20 inlining is not possible. */
22 #undef __USE_STRING_INLINES
23 #define __USE_STRING_INLINES
24 #define _FORCE_INLINES
25 #define __STRING_INLINE /* empty */
26 #define __NO_INLINE__
28 #include <string.h>
29 #undef index
30 #undef rindex
32 #undef __NO_INLINE__
33 #include <bits/string.h>
34 #include <bits/string2.h>
36 /* Functions which are inlines in i486 but not i386. */
37 void *
38 __memcpy_by2 (void *dest, const void *src, size_t n)
40 return memcpy (dest, src, n);
42 strong_alias (__memcpy_by2, __memcpy_by4)
43 strong_alias (__memcpy_by2, __memcpy_g)
44 strong_alias (__memcpy_by2, __memcpy_g_internal)
46 void *
47 __memset_ccn_by2 (void *s, unsigned int c, size_t n)
49 return memset (s, c & 0xff, n);
51 strong_alias (__memset_ccn_by2, __memset_ccn_by4)
53 void *
54 __memset_gcn_by2 (void *s, int c, size_t n)
56 return memset (s, c, n);
58 strong_alias (__memset_gcn_by2, __memset_gcn_by4)
60 size_t
61 __strlen_g (const char *s)
63 return strlen (s);
66 char *
67 __strcpy_g (char *d, const char *s)
69 return strcpy (d, s);
72 char *
73 __mempcpy_by2 (char *d, const char *s, size_t n)
75 return mempcpy (d, s, n);
77 strong_alias (__mempcpy_by2, __mempcpy_by4)
78 strong_alias (__mempcpy_by2, __mempcpy_byn)
80 char *
81 __stpcpy_g (char *d, const char *s)
83 return stpcpy (d, s);
86 char *
87 __strncpy_by2 (char *d, const char s[], size_t srclen, size_t n)
89 return strncpy (d, s, n);
91 strong_alias (__strncpy_by2, __strncpy_by4)
92 strong_alias (__strncpy_by2, __strncpy_byn)
94 char *
95 __strncpy_gg (char *d, const char *s, size_t n)
97 return strncpy (d, s, n);
100 char *
101 __strcat_c (char *d, const char s[], size_t srclen)
103 return strcat (d, s);
106 char *
107 __strcat_g (char *d, const char *s)
109 return strcat (d, s);
112 char *
113 __strncat_g (char *d, const char s[], size_t n)
115 return strncat (d, s, n);
119 __strcmp_gg (const char *s1, const char *s2)
121 return strcmp (s1, s2);
125 __strncmp_g (const char *s1, const char *s2, size_t n)
127 return strncmp (s1, s2, n);
130 char *
131 __strrchr_c (const char *s, int c)
133 return strrchr (s, c >> 8);
136 char *
137 __strrchr_g (const char *s, int c)
139 return strrchr (s, c);
142 size_t
143 __strcspn_cg (const char *s, const char reject[], size_t reject_len)
145 return strcspn (s, reject);
148 size_t
149 __strcspn_g (const char *s, const char *reject)
151 return strcspn (s, reject);
154 size_t
155 __strspn_cg (const char *s, const char accept[], size_t accept_len)
157 return strspn (s, accept);
160 size_t
161 __strspn_g (const char *s, const char *accept)
163 return strspn (s, accept);
166 char *
167 __strpbrk_cg (const char *s, const char accept[], size_t accept_len)
169 return strpbrk (s, accept);
172 char *
173 __strpbrk_g (const char *s, const char *accept)
175 return strpbrk (s, accept);
178 char *
179 __strstr_cg (const char *haystack, const char needle[], size_t needle_len)
181 return strstr (haystack, needle);
184 char *
185 __strstr_g (const char *haystack, const char needle[])
187 return strstr (haystack, needle);