159deaec5SRodney W. Grimes /*- 259deaec5SRodney W. Grimes * Copyright (c) 1990, 1993 359deaec5SRodney W. Grimes * The Regents of the University of California. All rights reserved. 459deaec5SRodney W. Grimes * 559deaec5SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 659deaec5SRodney W. Grimes * modification, are permitted provided that the following conditions 759deaec5SRodney W. Grimes * are met: 859deaec5SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 959deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 1059deaec5SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 1159deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 1259deaec5SRodney W. Grimes * documentation and/or other materials provided with the distribution. 13f2556687SWarner Losh * 3. Neither the name of the University nor the names of its contributors 1459deaec5SRodney W. Grimes * may be used to endorse or promote products derived from this software 1559deaec5SRodney W. Grimes * without specific prior written permission. 1659deaec5SRodney W. Grimes * 1759deaec5SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 1859deaec5SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1959deaec5SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2059deaec5SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2159deaec5SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2259deaec5SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2359deaec5SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2459deaec5SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2559deaec5SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2659deaec5SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2759deaec5SRodney W. Grimes * SUCH DAMAGE. 2859deaec5SRodney W. Grimes * 294546f902SBruce Evans * @(#)string.h 8.1 (Berkeley) 6/2/93 3041036d78SMike Barcroft * $FreeBSD$ 3159deaec5SRodney W. Grimes */ 3259deaec5SRodney W. Grimes 3359deaec5SRodney W. Grimes #ifndef _STRING_H_ 3459deaec5SRodney W. Grimes #define _STRING_H_ 3561b60edfSMike Barcroft 3661b60edfSMike Barcroft #include <sys/cdefs.h> 3712eb46c8SMarcel Moolenaar #include <sys/_null.h> 38abbd8902SMike Barcroft #include <sys/_types.h> 3959deaec5SRodney W. Grimes 4061b60edfSMike Barcroft /* 4161b60edfSMike Barcroft * Prototype functions which were historically defined in <string.h>, but 4261b60edfSMike Barcroft * are required by POSIX to be prototyped in <strings.h>. 4361b60edfSMike Barcroft */ 4461b60edfSMike Barcroft #if __BSD_VISIBLE 4561b60edfSMike Barcroft #include <strings.h> 4661b60edfSMike Barcroft #endif 4761b60edfSMike Barcroft 48abbd8902SMike Barcroft #ifndef _SIZE_T_DECLARED 49abbd8902SMike Barcroft typedef __size_t size_t; 50abbd8902SMike Barcroft #define _SIZE_T_DECLARED 5159deaec5SRodney W. Grimes #endif 5259deaec5SRodney W. Grimes 5359deaec5SRodney W. Grimes __BEGIN_DECLS 54dd5185d1SDavid Schultz #if __XSI_VISIBLE >= 600 5532484af1SMike Barcroft void *memccpy(void * __restrict, const void * __restrict, int, size_t); 5632484af1SMike Barcroft #endif 57779f8b0dSTim J. Robbins void *memchr(const void *, int, size_t) __pure; 58dd5185d1SDavid Schultz #if __BSD_VISIBLE 5982e45205SXin LI void *memrchr(const void *, int, size_t) __pure; 60dd5185d1SDavid Schultz #endif 61779f8b0dSTim J. Robbins int memcmp(const void *, const void *, size_t) __pure; 6261b60edfSMike Barcroft void *memcpy(void * __restrict, const void * __restrict, size_t); 63da506dcaSAndre Oppermann #if __BSD_VISIBLE 64dce7ffd6SDavid Schultz void *memmem(const void *, size_t, const void *, size_t) __pure; 65da506dcaSAndre Oppermann #endif 66bb28f3c2SWarner Losh void *memmove(void *, const void *, size_t); 67bb28f3c2SWarner Losh void *memset(void *, int, size_t); 6869099ba2SDavid Schultz #if __POSIX_VISIBLE >= 200809 || __BSD_VISIBLE 6969099ba2SDavid Schultz char *stpcpy(char * __restrict, const char * __restrict); 7069099ba2SDavid Schultz char *stpncpy(char * __restrict, const char * __restrict, size_t); 7169099ba2SDavid Schultz #endif 7232484af1SMike Barcroft #if __BSD_VISIBLE 73779f8b0dSTim J. Robbins char *strcasestr(const char *, const char *) __pure; 7432484af1SMike Barcroft #endif 7561b60edfSMike Barcroft char *strcat(char * __restrict, const char * __restrict); 76779f8b0dSTim J. Robbins char *strchr(const char *, int) __pure; 77*4e95969eSNiclas Zeising #if __BSD_VISIBLE 78d902844bSNiclas Zeising char *strchrnul(const char*, int) __pure; 79d902844bSNiclas Zeising #endif 80779f8b0dSTim J. Robbins int strcmp(const char *, const char *) __pure; 81bb28f3c2SWarner Losh int strcoll(const char *, const char *); 8261b60edfSMike Barcroft char *strcpy(char * __restrict, const char * __restrict); 83779f8b0dSTim J. Robbins size_t strcspn(const char *, const char *) __pure; 8432484af1SMike Barcroft #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 85544048ecSDavid Schultz char *strdup(const char *) __malloc_like; 8661b60edfSMike Barcroft #endif 8732484af1SMike Barcroft char *strerror(int); 886e070759SMike Barcroft #if __POSIX_VISIBLE >= 200112 896e070759SMike Barcroft int strerror_r(int, char *, size_t); 906e070759SMike Barcroft #endif 9161b60edfSMike Barcroft #if __BSD_VISIBLE 92e00a6d21SDavid Schultz size_t strlcat(char * __restrict, const char * __restrict, size_t); 93e00a6d21SDavid Schultz size_t strlcpy(char * __restrict, const char * __restrict, size_t); 9432484af1SMike Barcroft #endif 95779f8b0dSTim J. Robbins size_t strlen(const char *) __pure; 9632484af1SMike Barcroft #if __BSD_VISIBLE 9752fbcc15SRuslan Ermilov void strmode(int, char *); 9832484af1SMike Barcroft #endif 9932484af1SMike Barcroft char *strncat(char * __restrict, const char * __restrict, size_t); 100779f8b0dSTim J. Robbins int strncmp(const char *, const char *, size_t) __pure; 10132484af1SMike Barcroft char *strncpy(char * __restrict, const char * __restrict, size_t); 10269099ba2SDavid Schultz #if __POSIX_VISIBLE >= 200809 || __BSD_VISIBLE 103544048ecSDavid Schultz char *strndup(const char *, size_t) __malloc_like; 10469099ba2SDavid Schultz size_t strnlen(const char *, size_t) __pure; 10569099ba2SDavid Schultz #endif 10669099ba2SDavid Schultz #if __BSD_VISIBLE 107779f8b0dSTim J. Robbins char *strnstr(const char *, const char *, size_t) __pure; 10832484af1SMike Barcroft #endif 109779f8b0dSTim J. Robbins char *strpbrk(const char *, const char *) __pure; 110779f8b0dSTim J. Robbins char *strrchr(const char *, int) __pure; 11132484af1SMike Barcroft #if __BSD_VISIBLE 112bb28f3c2SWarner Losh char *strsep(char **, const char *); 11369099ba2SDavid Schultz #endif 11469099ba2SDavid Schultz #if __POSIX_VISIBLE >= 200809 || __BSD_VISIBLE 115bb28f3c2SWarner Losh char *strsignal(int); 11632484af1SMike Barcroft #endif 117779f8b0dSTim J. Robbins size_t strspn(const char *, const char *) __pure; 118779f8b0dSTim J. Robbins char *strstr(const char *, const char *) __pure; 11932484af1SMike Barcroft char *strtok(char * __restrict, const char * __restrict); 12032484af1SMike Barcroft #if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 500 12132484af1SMike Barcroft char *strtok_r(char *, const char *, char **); 12232484af1SMike Barcroft #endif 12332484af1SMike Barcroft size_t strxfrm(char * __restrict, const char * __restrict, size_t); 12432484af1SMike Barcroft #if __BSD_VISIBLE 1252f5cde3cSTom Rhodes 1262f5cde3cSTom Rhodes #ifndef _SWAB_DECLARED 1272f5cde3cSTom Rhodes #define _SWAB_DECLARED 1282f5cde3cSTom Rhodes 1292f5cde3cSTom Rhodes #ifndef _SSIZE_T_DECLARED 1302f5cde3cSTom Rhodes typedef __ssize_t ssize_t; 1312f5cde3cSTom Rhodes #define _SSIZE_T_DECLARED 1322f5cde3cSTom Rhodes #endif /* _SIZE_T_DECLARED */ 1332f5cde3cSTom Rhodes 1342f5cde3cSTom Rhodes void swab(const void * __restrict, void * __restrict, ssize_t); 1352f5cde3cSTom Rhodes #endif /* _SWAB_DECLARED */ 1362f5cde3cSTom Rhodes 1372f5cde3cSTom Rhodes #endif /* __BSD_VISIBLE */ 138a8ed63bbSDavid Chisnall 1393ac9d659SDavid Chisnall #if __POSIX_VISIBLE >= 200809 || defined(_XLOCALE_H_) 140a8ed63bbSDavid Chisnall #include <xlocale/_string.h> 141a8ed63bbSDavid Chisnall #endif 14259deaec5SRodney W. Grimes __END_DECLS 14359deaec5SRodney W. Grimes 14459deaec5SRodney W. Grimes #endif /* _STRING_H_ */ 145