xref: /freebsd/include/string.h (revision 59677aecb67bbedcfa2ee5d7d2b189193cdc4af7)
159deaec5SRodney W. Grimes /*-
22321c474SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
32321c474SPedro F. Giffuni  *
459deaec5SRodney W. Grimes  * Copyright (c) 1990, 1993
559deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
659deaec5SRodney W. Grimes  *
759deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
859deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
959deaec5SRodney W. Grimes  * are met:
1059deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1259deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1359deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1459deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15f2556687SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1659deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1759deaec5SRodney W. Grimes  *    without specific prior written permission.
1859deaec5SRodney W. Grimes  *
1959deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2059deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2159deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2259deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2359deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2459deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2559deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2659deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2759deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2859deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2959deaec5SRodney W. Grimes  * SUCH DAMAGE.
3059deaec5SRodney W. Grimes  */
3159deaec5SRodney W. Grimes 
3259deaec5SRodney W. Grimes #ifndef _STRING_H_
3359deaec5SRodney W. Grimes #define	_STRING_H_
3461b60edfSMike Barcroft 
3561b60edfSMike Barcroft #include <sys/cdefs.h>
3612eb46c8SMarcel Moolenaar #include <sys/_null.h>
37abbd8902SMike Barcroft #include <sys/_types.h>
3859deaec5SRodney W. Grimes 
3961b60edfSMike Barcroft /*
4061b60edfSMike Barcroft  * Prototype functions which were historically defined in <string.h>, but
4161b60edfSMike Barcroft  * are required by POSIX to be prototyped in <strings.h>.
4261b60edfSMike Barcroft  */
4361b60edfSMike Barcroft #if __BSD_VISIBLE
4461b60edfSMike Barcroft #include <strings.h>
4561b60edfSMike Barcroft #endif
4661b60edfSMike Barcroft 
47abbd8902SMike Barcroft #ifndef _SIZE_T_DECLARED
48abbd8902SMike Barcroft typedef	__size_t	size_t;
49abbd8902SMike Barcroft #define	_SIZE_T_DECLARED
5059deaec5SRodney W. Grimes #endif
5159deaec5SRodney W. Grimes 
52cf8e5289SKyle Evans #if !defined(_STANDALONE) && defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0
53cf8e5289SKyle Evans #include <ssp/string.h>
54cf8e5289SKyle Evans #endif
55cf8e5289SKyle Evans 
5659deaec5SRodney W. Grimes __BEGIN_DECLS
57*59677aecSStephen Hurd #if __XSI_VISIBLE >= 600 || __ISO_C_VISIBLE >= 2023
5832484af1SMike Barcroft void	*memccpy(void * __restrict, const void * __restrict, int, size_t);
5932484af1SMike Barcroft #endif
60779f8b0dSTim J. Robbins void	*memchr(const void *, int, size_t) __pure;
61dd5185d1SDavid Schultz #if __BSD_VISIBLE
6282e45205SXin LI void	*memrchr(const void *, int, size_t) __pure;
63dd5185d1SDavid Schultz #endif
64779f8b0dSTim J. Robbins int	 memcmp(const void *, const void *, size_t) __pure;
65cf8e5289SKyle Evans void	*(memcpy)(void * __restrict, const void * __restrict, size_t);
66da506dcaSAndre Oppermann #if __BSD_VISIBLE
67dce7ffd6SDavid Schultz void	*memmem(const void *, size_t, const void *, size_t) __pure;
68da506dcaSAndre Oppermann #endif
69cf8e5289SKyle Evans void	*(memmove)(void *, const void *, size_t);
70ee37f64cSKonstantin Belousov #if __BSD_VISIBLE
710c47b9c2SKyle Evans void	*(mempcpy)(void * __restrict, const void * __restrict, size_t);
72ee37f64cSKonstantin Belousov #endif
73cf8e5289SKyle Evans void	*(memset)(void *, int, size_t);
74007871c3SRobert Clausecker #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 2023
75007871c3SRobert Clausecker void	*memset_explicit(void *, int, size_t);
76007871c3SRobert Clausecker #endif
77448f5f73SJilles Tjoelker #if __POSIX_VISIBLE >= 200809
78cf8e5289SKyle Evans char	*(stpcpy)(char * __restrict, const char * __restrict);
79cf8e5289SKyle Evans char	*(stpncpy)(char * __restrict, const char * __restrict, size_t);
8069099ba2SDavid Schultz #endif
8132484af1SMike Barcroft #if __BSD_VISIBLE
82779f8b0dSTim J. Robbins char	*strcasestr(const char *, const char *) __pure;
8332484af1SMike Barcroft #endif
84cf8e5289SKyle Evans char	*(strcat)(char * __restrict, const char * __restrict);
85779f8b0dSTim J. Robbins char	*strchr(const char *, int) __pure;
864e95969eSNiclas Zeising #if __BSD_VISIBLE
87d902844bSNiclas Zeising char	*strchrnul(const char*, int) __pure;
8805c9a015SAymeric Wibo int	 strverscmp(const char *, const char *) __pure;
89d902844bSNiclas Zeising #endif
90779f8b0dSTim J. Robbins int	 strcmp(const char *, const char *) __pure;
91bb28f3c2SWarner Losh int	 strcoll(const char *, const char *);
92cf8e5289SKyle Evans char	*(strcpy)(char * __restrict, const char * __restrict);
93779f8b0dSTim J. Robbins size_t	 strcspn(const char *, const char *) __pure;
94*59677aecSStephen Hurd #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE || __ISO_C_VISIBLE >= 2023
95544048ecSDavid Schultz char	*strdup(const char *) __malloc_like;
9661b60edfSMike Barcroft #endif
9732484af1SMike Barcroft char	*strerror(int);
986e070759SMike Barcroft #if __POSIX_VISIBLE >= 200112
996e070759SMike Barcroft int	 strerror_r(int, char *, size_t);
1006e070759SMike Barcroft #endif
10161b60edfSMike Barcroft #if __BSD_VISIBLE
102cf8e5289SKyle Evans size_t	 (strlcat)(char * __restrict, const char * __restrict, size_t);
103cf8e5289SKyle Evans size_t	 (strlcpy)(char * __restrict, const char * __restrict, size_t);
10432484af1SMike Barcroft #endif
105779f8b0dSTim J. Robbins size_t	 strlen(const char *) __pure;
10632484af1SMike Barcroft #if __BSD_VISIBLE
107849dcdb1SAlfonso Gregory 
108849dcdb1SAlfonso Gregory #ifndef _MODE_T_DECLARED
109849dcdb1SAlfonso Gregory typedef	__mode_t	mode_t;
110849dcdb1SAlfonso Gregory #define	_MODE_T_DECLARED
111849dcdb1SAlfonso Gregory #endif
112849dcdb1SAlfonso Gregory 
113849dcdb1SAlfonso Gregory void	 strmode(mode_t, char *);
11432484af1SMike Barcroft #endif
115cf8e5289SKyle Evans char	*(strncat)(char * __restrict, const char * __restrict, size_t);
116779f8b0dSTim J. Robbins int	 strncmp(const char *, const char *, size_t) __pure;
117cf8e5289SKyle Evans char	*(strncpy)(char * __restrict, const char * __restrict, size_t);
118*59677aecSStephen Hurd #if __POSIX_VISIBLE >= 200809 || __ISO_C_VISIBLE >= 2023
119544048ecSDavid Schultz char	*strndup(const char *, size_t) __malloc_like;
120*59677aecSStephen Hurd #endif
121*59677aecSStephen Hurd #if __POSIX_VISIBLE >= 200809
12269099ba2SDavid Schultz size_t	 strnlen(const char *, size_t) __pure;
12369099ba2SDavid Schultz #endif
12469099ba2SDavid Schultz #if __BSD_VISIBLE
125779f8b0dSTim J. Robbins char	*strnstr(const char *, const char *, size_t) __pure;
12632484af1SMike Barcroft #endif
127779f8b0dSTim J. Robbins char	*strpbrk(const char *, const char *) __pure;
128779f8b0dSTim J. Robbins char	*strrchr(const char *, int) __pure;
12932484af1SMike Barcroft #if __BSD_VISIBLE
130bb28f3c2SWarner Losh char	*strsep(char **, const char *);
13169099ba2SDavid Schultz #endif
132448f5f73SJilles Tjoelker #if __POSIX_VISIBLE >= 200809
133bb28f3c2SWarner Losh char	*strsignal(int);
13432484af1SMike Barcroft #endif
135779f8b0dSTim J. Robbins size_t	 strspn(const char *, const char *) __pure;
136779f8b0dSTim J. Robbins char	*strstr(const char *, const char *) __pure;
13732484af1SMike Barcroft char	*strtok(char * __restrict, const char * __restrict);
13832484af1SMike Barcroft #if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 500
13932484af1SMike Barcroft char	*strtok_r(char *, const char *, char **);
14032484af1SMike Barcroft #endif
14132484af1SMike Barcroft size_t	 strxfrm(char * __restrict, const char * __restrict, size_t);
14232484af1SMike Barcroft #if __BSD_VISIBLE
1432f5cde3cSTom Rhodes 
1442f5cde3cSTom Rhodes #ifndef _SWAB_DECLARED
1452f5cde3cSTom Rhodes #define _SWAB_DECLARED
1462f5cde3cSTom Rhodes 
1472f5cde3cSTom Rhodes #ifndef _SSIZE_T_DECLARED
1482f5cde3cSTom Rhodes typedef	__ssize_t	ssize_t;
1492f5cde3cSTom Rhodes #define	_SSIZE_T_DECLARED
1502f5cde3cSTom Rhodes #endif /* _SIZE_T_DECLARED */
1512f5cde3cSTom Rhodes 
1522f5cde3cSTom Rhodes void	 swab(const void * __restrict, void * __restrict, ssize_t);
1532f5cde3cSTom Rhodes #endif /* _SWAB_DECLARED */
1542f5cde3cSTom Rhodes 
155854023f0SXin LI int	 timingsafe_bcmp(const void *, const void *, size_t);
156854023f0SXin LI int	 timingsafe_memcmp(const void *, const void *, size_t);
1572f5cde3cSTom Rhodes #endif /* __BSD_VISIBLE */
158a8ed63bbSDavid Chisnall 
15965bf3043SKonstantin Belousov #if __POSIX_VISIBLE >= 200112 || defined(_XLOCALE_H_)
160a8ed63bbSDavid Chisnall #include <xlocale/_string.h>
161a8ed63bbSDavid Chisnall #endif
1629851b340SKonstantin Belousov 
1639851b340SKonstantin Belousov #if __EXT1_VISIBLE
1649851b340SKonstantin Belousov 
1659851b340SKonstantin Belousov #ifndef _RSIZE_T_DEFINED
1669851b340SKonstantin Belousov #define _RSIZE_T_DEFINED
1679851b340SKonstantin Belousov typedef size_t rsize_t;
1689851b340SKonstantin Belousov #endif
1699851b340SKonstantin Belousov 
1709851b340SKonstantin Belousov #ifndef _ERRNO_T_DEFINED
1719851b340SKonstantin Belousov #define _ERRNO_T_DEFINED
1729851b340SKonstantin Belousov typedef int errno_t;
1739851b340SKonstantin Belousov #endif
1749851b340SKonstantin Belousov 
1759851b340SKonstantin Belousov /* ISO/IEC 9899:2011 K.3.7.4.1.1 */
1769851b340SKonstantin Belousov errno_t memset_s(void *, rsize_t, int, rsize_t);
1779851b340SKonstantin Belousov #endif /* __EXT1_VISIBLE */
17859deaec5SRodney W. Grimes __END_DECLS
17959deaec5SRodney W. Grimes 
18059deaec5SRodney W. Grimes #endif /* _STRING_H_ */
181