OSDN Git Service

update partially string.h and strings.h
[uclinux-h8/uClibc.git] / include / strings.h
1 /* Copyright (C) 1991,92,96,97,99,2000,2001,2009 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
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.
8
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.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #ifndef _STRINGS_H
20 #define _STRINGS_H      1
21
22 /* We don't need and should not read this file if <string.h> was already
23    read. The one exception being that if __USE_BSD isn't defined, then
24    these aren't defined in string.h, so we need to define them here.  */
25
26 /* keep this file in sync w/ string.h, the glibc version is out of date */
27
28 #if !defined _STRING_H || !defined __USE_BSD
29
30 # include <features.h>
31 # define __need_size_t
32 # include <stddef.h>
33
34 __BEGIN_DECLS
35
36 # ifdef __UCLIBC_SUSV3_LEGACY__
37 /* Copy N bytes of SRC to DEST (like memmove, but args reversed).  */
38 extern void bcopy (__const void *__src, void *__dest, size_t __n)
39      __THROW __nonnull ((1, 2));
40
41 /* Set N bytes of S to 0.  */
42 extern void bzero (void *__s, size_t __n) __THROW __nonnull ((1));
43
44 /* Compare N bytes of S1 and S2 (same as memcmp).  */
45 extern int bcmp (__const void *__s1, __const void *__s2, size_t __n)
46      __THROW __attribute_pure__ __nonnull ((1, 2));
47
48 /* Find the first occurrence of C in S (same as strchr).  */
49 extern char *index (__const char *__s, int __c)
50      __THROW __attribute_pure__ __nonnull ((1));
51
52 /* Find the last occurrence of C in S (same as strrchr).  */
53 extern char *rindex (__const char *__s, int __c)
54      __THROW __attribute_pure__ __nonnull ((1));
55 # else
56 #  ifdef __UCLIBC_SUSV3_LEGACY_MACROS__
57 /* bcopy/bzero/bcmp/index/rindex are marked LEGACY in SuSv3.
58  * They are replaced as proposed by SuSv3. Don't sync this part
59  * with glibc and keep it in sync with string.h.  */
60
61 #  define bcopy(src,dest,n) (memmove((dest), (src), (n)), (void) 0)
62 #  define bzero(s,n) (memset((s), '\0', (n)), (void) 0)
63 #  define bcmp(s1,s2,n) memcmp((s1), (s2), (size_t)(n))
64 #  define index(s,c) strchr((s), (c))
65 #  define rindex(s,c) strrchr((s), (c))
66 #  endif
67 # endif
68
69 /* Return the position of the first bit set in I, or 0 if none are set.
70    The least-significant bit is position 1, the most-significant 32.  */
71 extern int ffs (int __i) __THROW __attribute__ ((__const__));
72 libc_hidden_proto(ffs)
73
74 /* The following two functions are non-standard but necessary for non-32 bit
75    platforms.  */
76 # ifdef __USE_GNU
77 extern int ffsl (long int __l) __THROW __attribute__ ((__const__));
78 #  ifdef __GNUC__
79 __extension__ extern int ffsll (long long int __ll)
80      __THROW __attribute__ ((__const__));
81 #  endif
82 # endif
83
84 /* Compare S1 and S2, ignoring case.  */
85 extern int strcasecmp (__const char *__s1, __const char *__s2)
86      __THROW __attribute_pure__ __nonnull ((1, 2));
87 libc_hidden_proto(strcasecmp)
88
89 /* Compare no more than N chars of S1 and S2, ignoring case.  */
90 extern int strncasecmp (__const char *__s1, __const char *__s2, size_t __n)
91      __THROW __attribute_pure__ __nonnull ((1, 2));
92 libc_hidden_proto(strncasecmp)
93
94 #if defined __USE_XOPEN2K8 && defined __UCLIBC_HAS_XLOCALE__
95 /* The following functions are equivalent to the both above but they
96    take the locale they use for the collation as an extra argument.
97    This is not standardsized but something like will come.  */
98 # include <xlocale.h>
99
100 /* Again versions of a few functions which use the given locale instead
101    of the global one.  */
102 extern int strcasecmp_l (__const char *__s1, __const char *__s2,
103                          __locale_t __loc)
104      __THROW __attribute_pure__ __nonnull ((1, 2, 3));
105 libc_hidden_proto(strcasecmp_l)
106
107 extern int strncasecmp_l (__const char *__s1, __const char *__s2,
108                           size_t __n, __locale_t __loc)
109      __THROW __attribute_pure__ __nonnull ((1, 2, 4));
110 libc_hidden_proto(strncasecmp_l)
111 #endif
112 __END_DECLS
113
114
115 #ifdef _LIBC
116 /* comment is wrong and will face this, when HAS_GNU option will be added
117  * header is SuSv standard */
118 #error "<strings.h> should not be included from libc."
119 #endif
120
121
122 #endif  /* string.h  */
123
124 #endif  /* strings.h  */