1994-05-24 09:57:34 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2010-02-16 19:39:50 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-24 09:57:34 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
2001-10-10 07:34:47 +00:00
|
|
|
* @(#)string.h 8.1 (Berkeley) 6/2/93
|
2001-10-09 01:29:56 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 09:57:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STRING_H_
|
|
|
|
#define _STRING_H_
|
2002-04-04 05:41:57 +00:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2003-12-07 21:10:06 +00:00
|
|
|
#include <sys/_null.h>
|
2002-08-21 16:20:02 +00:00
|
|
|
#include <sys/_types.h>
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2002-04-04 05:41:57 +00:00
|
|
|
/*
|
|
|
|
* Prototype functions which were historically defined in <string.h>, but
|
|
|
|
* are required by POSIX to be prototyped in <strings.h>.
|
|
|
|
*/
|
|
|
|
#if __BSD_VISIBLE
|
|
|
|
#include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2002-08-21 16:20:02 +00:00
|
|
|
#ifndef _SIZE_T_DECLARED
|
|
|
|
typedef __size_t size_t;
|
|
|
|
#define _SIZE_T_DECLARED
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
2009-03-14 19:03:34 +00:00
|
|
|
#if __XSI_VISIBLE >= 600
|
2002-10-14 20:38:40 +00:00
|
|
|
void *memccpy(void * __restrict, const void * __restrict, int, size_t);
|
|
|
|
#endif
|
2004-07-23 02:20:05 +00:00
|
|
|
void *memchr(const void *, int, size_t) __pure;
|
2009-03-14 19:03:34 +00:00
|
|
|
#if __BSD_VISIBLE
|
2008-04-10 00:12:44 +00:00
|
|
|
void *memrchr(const void *, int, size_t) __pure;
|
2009-03-14 19:03:34 +00:00
|
|
|
#endif
|
2004-07-23 02:20:05 +00:00
|
|
|
int memcmp(const void *, const void *, size_t) __pure;
|
2002-04-04 05:41:57 +00:00
|
|
|
void *memcpy(void * __restrict, const void * __restrict, size_t);
|
2005-08-25 19:46:38 +00:00
|
|
|
#if __BSD_VISIBLE
|
2009-02-28 05:08:35 +00:00
|
|
|
void *memmem(const void *, size_t, const void *, size_t) __pure;
|
2005-08-25 19:46:38 +00:00
|
|
|
#endif
|
2002-03-23 17:24:55 +00:00
|
|
|
void *memmove(void *, const void *, size_t);
|
|
|
|
void *memset(void *, int, size_t);
|
2014-05-11 13:48:21 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809
|
2009-02-28 06:00:58 +00:00
|
|
|
char *stpcpy(char * __restrict, const char * __restrict);
|
|
|
|
char *stpncpy(char * __restrict, const char * __restrict, size_t);
|
|
|
|
#endif
|
2002-10-14 20:38:40 +00:00
|
|
|
#if __BSD_VISIBLE
|
2004-07-23 02:20:05 +00:00
|
|
|
char *strcasestr(const char *, const char *) __pure;
|
2002-10-14 20:38:40 +00:00
|
|
|
#endif
|
2002-04-04 05:41:57 +00:00
|
|
|
char *strcat(char * __restrict, const char * __restrict);
|
2004-07-23 02:20:05 +00:00
|
|
|
char *strchr(const char *, int) __pure;
|
2013-02-14 19:26:58 +00:00
|
|
|
#if __BSD_VISIBLE
|
2013-02-13 15:46:33 +00:00
|
|
|
char *strchrnul(const char*, int) __pure;
|
|
|
|
#endif
|
2004-07-23 02:20:05 +00:00
|
|
|
int strcmp(const char *, const char *) __pure;
|
2002-03-23 17:24:55 +00:00
|
|
|
int strcoll(const char *, const char *);
|
2002-04-04 05:41:57 +00:00
|
|
|
char *strcpy(char * __restrict, const char * __restrict);
|
2004-07-23 02:20:05 +00:00
|
|
|
size_t strcspn(const char *, const char *) __pure;
|
2002-10-14 20:38:40 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
|
2009-01-31 18:27:02 +00:00
|
|
|
char *strdup(const char *) __malloc_like;
|
2002-10-14 20:38:40 +00:00
|
|
|
#endif
|
2002-03-23 17:24:55 +00:00
|
|
|
char *strerror(int);
|
2002-10-14 20:38:40 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200112
|
|
|
|
int strerror_r(int, char *, size_t);
|
|
|
|
#endif
|
|
|
|
#if __BSD_VISIBLE
|
2009-02-28 05:15:02 +00:00
|
|
|
size_t strlcat(char * __restrict, const char * __restrict, size_t);
|
|
|
|
size_t strlcpy(char * __restrict, const char * __restrict, size_t);
|
2002-10-14 20:38:40 +00:00
|
|
|
#endif
|
2004-07-23 02:20:05 +00:00
|
|
|
size_t strlen(const char *) __pure;
|
2002-10-14 20:38:40 +00:00
|
|
|
#if __BSD_VISIBLE
|
2005-11-24 08:30:44 +00:00
|
|
|
void strmode(int, char *);
|
2002-10-14 20:38:40 +00:00
|
|
|
#endif
|
2002-04-04 05:41:57 +00:00
|
|
|
char *strncat(char * __restrict, const char * __restrict, size_t);
|
2004-07-23 02:20:05 +00:00
|
|
|
int strncmp(const char *, const char *, size_t) __pure;
|
2002-04-04 05:41:57 +00:00
|
|
|
char *strncpy(char * __restrict, const char * __restrict, size_t);
|
2014-05-11 13:48:21 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809
|
2009-01-31 18:27:02 +00:00
|
|
|
char *strndup(const char *, size_t) __malloc_like;
|
2009-02-28 06:00:58 +00:00
|
|
|
size_t strnlen(const char *, size_t) __pure;
|
|
|
|
#endif
|
|
|
|
#if __BSD_VISIBLE
|
2004-07-23 02:20:05 +00:00
|
|
|
char *strnstr(const char *, const char *, size_t) __pure;
|
2002-10-14 20:38:40 +00:00
|
|
|
#endif
|
2004-07-23 02:20:05 +00:00
|
|
|
char *strpbrk(const char *, const char *) __pure;
|
|
|
|
char *strrchr(const char *, int) __pure;
|
2002-10-14 20:38:40 +00:00
|
|
|
#if __BSD_VISIBLE
|
|
|
|
char *strsep(char **, const char *);
|
2009-02-28 06:00:58 +00:00
|
|
|
#endif
|
2014-05-11 13:48:21 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809
|
2002-10-14 20:38:40 +00:00
|
|
|
char *strsignal(int);
|
|
|
|
#endif
|
2004-07-23 02:20:05 +00:00
|
|
|
size_t strspn(const char *, const char *) __pure;
|
|
|
|
char *strstr(const char *, const char *) __pure;
|
2002-04-04 05:41:57 +00:00
|
|
|
char *strtok(char * __restrict, const char * __restrict);
|
2002-10-14 20:38:40 +00:00
|
|
|
#if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 500
|
2002-04-04 05:41:57 +00:00
|
|
|
char *strtok_r(char *, const char *, char **);
|
|
|
|
#endif
|
2002-10-14 20:38:40 +00:00
|
|
|
size_t strxfrm(char * __restrict, const char * __restrict, size_t);
|
2002-04-04 05:41:57 +00:00
|
|
|
#if __BSD_VISIBLE
|
2004-12-10 15:24:40 +00:00
|
|
|
|
|
|
|
#ifndef _SWAB_DECLARED
|
|
|
|
#define _SWAB_DECLARED
|
|
|
|
|
|
|
|
#ifndef _SSIZE_T_DECLARED
|
|
|
|
typedef __ssize_t ssize_t;
|
|
|
|
#define _SSIZE_T_DECLARED
|
|
|
|
#endif /* _SIZE_T_DECLARED */
|
|
|
|
|
|
|
|
void swab(const void * __restrict, void * __restrict, ssize_t);
|
|
|
|
#endif /* _SWAB_DECLARED */
|
|
|
|
|
|
|
|
#endif /* __BSD_VISIBLE */
|
2012-03-04 15:31:13 +00:00
|
|
|
|
2012-03-28 12:11:54 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809 || defined(_XLOCALE_H_)
|
2012-03-04 15:31:13 +00:00
|
|
|
#include <xlocale/_string.h>
|
|
|
|
#endif
|
1994-05-24 09:57:34 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* _STRING_H_ */
|