2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
* string.h
|
|
|
|
*
|
|
|
|
* Definitions for memory and string functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STRING_H_
|
|
|
|
#define _STRING_H_
|
|
|
|
|
|
|
|
#include "_ansi.h"
|
|
|
|
#include <sys/reent.h>
|
2011-03-03 19:11:41 +08:00
|
|
|
#include <sys/cdefs.h>
|
2012-10-22 23:16:48 +08:00
|
|
|
#include <sys/features.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
#define __need_size_t
|
2012-11-01 19:51:12 +08:00
|
|
|
#define __need_NULL
|
2000-02-18 03:39:52 +08:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2002-06-28 07:58:38 +08:00
|
|
|
_BEGIN_STD_C
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
_PTR _EXFUN(memchr,(const _PTR, int, size_t));
|
|
|
|
int _EXFUN(memcmp,(const _PTR, const _PTR, size_t));
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
_PTR _EXFUN(memcpy,(_PTR __restrict, const _PTR __restrict, size_t));
|
2000-02-18 03:39:52 +08:00
|
|
|
_PTR _EXFUN(memmove,(_PTR, const _PTR, size_t));
|
|
|
|
_PTR _EXFUN(memset,(_PTR, int, size_t));
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
char *_EXFUN(strcat,(char *__restrict, const char *__restrict));
|
2000-02-18 03:39:52 +08:00
|
|
|
char *_EXFUN(strchr,(const char *, int));
|
|
|
|
int _EXFUN(strcmp,(const char *, const char *));
|
|
|
|
int _EXFUN(strcoll,(const char *, const char *));
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
char *_EXFUN(strcpy,(char *__restrict, const char *__restrict));
|
2000-02-18 03:39:52 +08:00
|
|
|
size_t _EXFUN(strcspn,(const char *, const char *));
|
|
|
|
char *_EXFUN(strerror,(int));
|
|
|
|
size_t _EXFUN(strlen,(const char *));
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
char *_EXFUN(strncat,(char *__restrict, const char *__restrict, size_t));
|
2000-02-18 03:39:52 +08:00
|
|
|
int _EXFUN(strncmp,(const char *, const char *, size_t));
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
char *_EXFUN(strncpy,(char *__restrict, const char *__restrict, size_t));
|
2000-02-18 03:39:52 +08:00
|
|
|
char *_EXFUN(strpbrk,(const char *, const char *));
|
|
|
|
char *_EXFUN(strrchr,(const char *, int));
|
|
|
|
size_t _EXFUN(strspn,(const char *, const char *));
|
|
|
|
char *_EXFUN(strstr,(const char *, const char *));
|
|
|
|
#ifndef _REENT_ONLY
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
char *_EXFUN(strtok,(char *__restrict, const char *__restrict));
|
2000-02-18 03:39:52 +08:00
|
|
|
#endif
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
size_t _EXFUN(strxfrm,(char *__restrict, const char *__restrict, size_t));
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2014-08-18 22:18:10 +08:00
|
|
|
#if __POSIX_VISIBLE
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
char *_EXFUN(strtok_r,(char *__restrict, const char *__restrict, char **__restrict));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
#if __BSD_VISIBLE
|
2002-05-24 02:46:04 +08:00
|
|
|
int _EXFUN(bcmp,(const void *, const void *, size_t));
|
|
|
|
void _EXFUN(bcopy,(const void *, void *, size_t));
|
|
|
|
void _EXFUN(bzero,(void *, size_t));
|
2000-02-18 03:39:52 +08:00
|
|
|
int _EXFUN(ffs,(int));
|
|
|
|
char *_EXFUN(index,(const char *, int));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
#if __BSD_VISIBLE || __XSI_VISIBLE
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
_PTR _EXFUN(memccpy,(_PTR __restrict, const _PTR __restrict, int, size_t));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
#if __GNU_VISIBLE
|
2002-07-24 05:38:00 +08:00
|
|
|
_PTR _EXFUN(mempcpy,(_PTR, const _PTR, size_t));
|
2008-01-12 12:25:55 +08:00
|
|
|
_PTR _EXFUN(memmem, (const _PTR, size_t, const _PTR, size_t));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
2012-05-10 16:34:08 +08:00
|
|
|
_PTR _EXFUN(memrchr,(const _PTR, int, size_t));
|
2014-08-18 22:18:10 +08:00
|
|
|
#if __GNU_VISIBLE
|
2013-06-24 23:11:24 +08:00
|
|
|
_PTR _EXFUN(rawmemchr,(const _PTR, int));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
#if __BSD_VISIBLE
|
2000-02-18 03:39:52 +08:00
|
|
|
char *_EXFUN(rindex,(const char *, int));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
* libc/sys/linux/include/netdb.h, libc/sys/linux/net/getaddrinfo.c,
libc/sys/linux/net/getnameinfo.c: Add restrict keyword to getnameinfo()
and getaddrinfo() to increase standards compliance and match glibc.
* libc/include/string.h, libc/string/memccpy.c, libc/string/memcpy.c,
libc/string/stpcpy.c, libc/string/stpncpy.c, libc/string/strcat.c,
libc/string/strncat.c, libc/string/strncpy.c, libc/string/strtok.c,
libc/string/strtok_r.c, libc/string/strxfrm.c
libc/machine/microblaze/strcpy.c, libc/machine/xscale/memcpy.c,
libc/machine/cris/memcpy.c: Add __restrict to prototype to
increase standards compliance.
2013-07-23 15:05:31 +08:00
|
|
|
char *_EXFUN(stpcpy,(char *__restrict, const char *__restrict));
|
|
|
|
char *_EXFUN(stpncpy,(char *__restrict, const char *__restrict, size_t));
|
2014-10-30 19:25:17 +08:00
|
|
|
#if __BSD_VISIBLE || __POSIX_VISIBLE
|
2000-02-18 03:39:52 +08:00
|
|
|
int _EXFUN(strcasecmp,(const char *, const char *));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
#if __GNU_VISIBLE
|
2007-06-09 02:38:51 +08:00
|
|
|
char *_EXFUN(strcasestr,(const char *, const char *));
|
2011-03-28 22:51:28 +08:00
|
|
|
char *_EXFUN(strchrnul,(const char *, int));
|
2012-10-22 23:16:48 +08:00
|
|
|
#endif
|
2014-08-18 22:18:10 +08:00
|
|
|
#if __XSI_VISIBLE >= 500
|
2000-02-18 03:39:52 +08:00
|
|
|
char *_EXFUN(strdup,(const char *));
|
2012-10-22 23:16:48 +08:00
|
|
|
#endif
|
|
|
|
#ifndef __STRICT_ANSI__
|
2000-02-18 03:39:52 +08:00
|
|
|
char *_EXFUN(_strdup_r,(struct _reent *, const char *));
|
2012-10-22 23:16:48 +08:00
|
|
|
#endif
|
2014-08-18 22:18:10 +08:00
|
|
|
#if __XSI_VISIBLE >= 700
|
2002-07-24 05:38:00 +08:00
|
|
|
char *_EXFUN(strndup,(const char *, size_t));
|
2012-10-22 23:16:48 +08:00
|
|
|
#endif
|
2014-08-18 22:18:10 +08:00
|
|
|
|
2012-10-22 23:16:48 +08:00
|
|
|
#ifndef __STRICT_ANSI__
|
2002-07-24 05:38:00 +08:00
|
|
|
char *_EXFUN(_strndup_r,(struct _reent *, const char *, size_t));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
|
2014-10-09 05:04:59 +08:00
|
|
|
#if __GNU_VISIBLE
|
|
|
|
int _EXFUN(ffsl,(long));
|
|
|
|
int _EXFUN(ffsll, (long long));
|
|
|
|
#endif
|
|
|
|
|
2011-02-11 00:48:18 +08:00
|
|
|
/* There are two common strerror_r variants. If you request
|
|
|
|
_GNU_SOURCE, you get the GNU version; otherwise you get the POSIX
|
|
|
|
version. POSIX requires that #undef strerror_r will still let you
|
|
|
|
invoke the underlying function, but that requires gcc support. */
|
2014-08-18 22:18:10 +08:00
|
|
|
#if __GNU_VISIBLE
|
|
|
|
char *_EXFUN(strerror_r,(int, char *, size_t));
|
2011-02-11 00:48:18 +08:00
|
|
|
#else
|
|
|
|
# ifdef __GNUC__
|
2014-08-18 22:18:10 +08:00
|
|
|
int _EXFUN(strerror_r,(int, char *, size_t))
|
2015-02-07 00:14:04 +08:00
|
|
|
#ifdef __ASMNAME
|
|
|
|
__asm__ (__ASMNAME ("__xpg_strerror_r"))
|
|
|
|
#endif
|
|
|
|
;
|
2011-02-11 00:48:18 +08:00
|
|
|
# else
|
2014-08-18 22:18:10 +08:00
|
|
|
int _EXFUN(__xpg_strerror_r,(int, char *, size_t));
|
2011-02-11 00:48:18 +08:00
|
|
|
# define strerror_r __xpg_strerror_r
|
|
|
|
# endif
|
|
|
|
#endif
|
2014-08-18 22:18:10 +08:00
|
|
|
|
|
|
|
/* Reentrant version of strerror. */
|
|
|
|
char * _EXFUN(_strerror_r, (struct _reent *, int, int, int *));
|
|
|
|
|
|
|
|
#if __BSD_VISIBLE
|
|
|
|
size_t _EXFUN(strlcat,(char *, const char *, size_t));
|
|
|
|
size_t _EXFUN(strlcpy,(char *, const char *, size_t));
|
|
|
|
#endif
|
|
|
|
#if __BSD_VISIBLE || __POSIX_VISIBLE
|
|
|
|
int _EXFUN(strncasecmp,(const char *, const char *, size_t));
|
|
|
|
#endif
|
2014-09-17 03:59:01 +08:00
|
|
|
#if !defined(__STRICT_ANSI__) || __POSIX_VISIBLE >= 200809 || \
|
|
|
|
__XSI_VISIBLE >= 700
|
2002-05-25 07:44:39 +08:00
|
|
|
size_t _EXFUN(strnlen,(const char *, size_t));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
#if __BSD_VISIBLE
|
2000-02-18 03:39:52 +08:00
|
|
|
char *_EXFUN(strsep,(char **, const char *));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The origin of these is unknown to me so I am conditionalizing them
|
|
|
|
* on __STRICT_ANSI__. Finetuning this is definitely needed. --joel
|
|
|
|
*/
|
|
|
|
#if !defined(__STRICT_ANSI__)
|
2000-02-18 03:39:52 +08:00
|
|
|
char *_EXFUN(strlwr,(char *));
|
|
|
|
char *_EXFUN(strupr,(char *));
|
2014-08-18 22:18:10 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-03 11:03:03 +08:00
|
|
|
#ifndef DEFS_H /* Kludge to work around problem compiling in gdb */
|
2014-08-18 22:18:10 +08:00
|
|
|
char *_EXFUN(strsignal, (int __signo));
|
2000-06-03 11:03:03 +08:00
|
|
|
#endif
|
2014-08-18 22:18:10 +08:00
|
|
|
|
2011-01-10 18:59:42 +08:00
|
|
|
#ifdef __CYGWIN__
|
2014-08-18 22:18:10 +08:00
|
|
|
int _EXFUN(strtosigno, (const char *__name));
|
2000-02-18 03:39:52 +08:00
|
|
|
#endif
|
|
|
|
|
2011-06-11 02:30:38 +08:00
|
|
|
#if defined _GNU_SOURCE && defined __GNUC__
|
|
|
|
#define strdupa(__s) \
|
|
|
|
(__extension__ ({const char *__in = (__s); \
|
|
|
|
size_t __len = strlen (__in) + 1; \
|
|
|
|
char * __out = (char *) __builtin_alloca (__len); \
|
|
|
|
(char *) memcpy (__out, __in, __len);}))
|
|
|
|
#define strndupa(__s, __n) \
|
|
|
|
(__extension__ ({const char *__in = (__s); \
|
|
|
|
size_t __len = strnlen (__in, (__n)) + 1; \
|
|
|
|
char *__out = (char *) __builtin_alloca (__len); \
|
|
|
|
__out[__len-1] = '\0'; \
|
|
|
|
(char *) memcpy (__out, __in, __len-1);}))
|
|
|
|
#endif /* _GNU_SOURCE && __GNUC__ */
|
|
|
|
|
2005-01-25 02:46:09 +08:00
|
|
|
#include <sys/string.h>
|
|
|
|
|
2002-06-28 07:58:38 +08:00
|
|
|
_END_STD_C
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#endif /* _STRING_H_ */
|