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. 1359deaec5SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 1459deaec5SRodney W. Grimes * must display the following acknowledgement: 1559deaec5SRodney W. Grimes * This product includes software developed by the University of 1659deaec5SRodney W. Grimes * California, Berkeley and its contributors. 1759deaec5SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 1859deaec5SRodney W. Grimes * may be used to endorse or promote products derived from this software 1959deaec5SRodney W. Grimes * without specific prior written permission. 2059deaec5SRodney W. Grimes * 2159deaec5SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2259deaec5SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2359deaec5SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2459deaec5SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2559deaec5SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2659deaec5SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2759deaec5SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2859deaec5SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2959deaec5SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 3059deaec5SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 3159deaec5SRodney W. Grimes * SUCH DAMAGE. 3259deaec5SRodney W. Grimes * 334546f902SBruce Evans * @(#)string.h 8.1 (Berkeley) 6/2/93 3441036d78SMike Barcroft * $FreeBSD$ 3559deaec5SRodney W. Grimes */ 3659deaec5SRodney W. Grimes 3759deaec5SRodney W. Grimes #ifndef _STRING_H_ 3859deaec5SRodney W. Grimes #define _STRING_H_ 3961b60edfSMike Barcroft 4061b60edfSMike Barcroft #include <sys/cdefs.h> 41abbd8902SMike Barcroft #include <sys/_types.h> 4259deaec5SRodney W. Grimes 4361b60edfSMike Barcroft /* 4461b60edfSMike Barcroft * Prototype functions which were historically defined in <string.h>, but 4561b60edfSMike Barcroft * are required by POSIX to be prototyped in <strings.h>. 4661b60edfSMike Barcroft */ 4761b60edfSMike Barcroft #if __BSD_VISIBLE 4861b60edfSMike Barcroft #include <strings.h> 4961b60edfSMike Barcroft #endif 5061b60edfSMike Barcroft 51abbd8902SMike Barcroft #ifndef _SIZE_T_DECLARED 52abbd8902SMike Barcroft typedef __size_t size_t; 53abbd8902SMike Barcroft #define _SIZE_T_DECLARED 5459deaec5SRodney W. Grimes #endif 5559deaec5SRodney W. Grimes 5659deaec5SRodney W. Grimes #ifndef NULL 5759deaec5SRodney W. Grimes #define NULL 0 5859deaec5SRodney W. Grimes #endif 5959deaec5SRodney W. Grimes 6059deaec5SRodney W. Grimes __BEGIN_DECLS 6132484af1SMike Barcroft #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 6232484af1SMike Barcroft void *memccpy(void * __restrict, const void * __restrict, int, size_t); 6332484af1SMike Barcroft #endif 64bb28f3c2SWarner Losh void *memchr(const void *, int, size_t); 65bb28f3c2SWarner Losh int memcmp(const void *, const void *, size_t); 6661b60edfSMike Barcroft void *memcpy(void * __restrict, const void * __restrict, size_t); 67bb28f3c2SWarner Losh void *memmove(void *, const void *, size_t); 68bb28f3c2SWarner Losh void *memset(void *, int, size_t); 6932484af1SMike Barcroft #if __BSD_VISIBLE 7032484af1SMike Barcroft char *stpcpy(char *, const char *); 7132484af1SMike Barcroft char *strcasestr(const char *, const char *); 7232484af1SMike Barcroft #endif 7361b60edfSMike Barcroft char *strcat(char * __restrict, const char * __restrict); 74bb28f3c2SWarner Losh char *strchr(const char *, int); 75bb28f3c2SWarner Losh int strcmp(const char *, const char *); 76bb28f3c2SWarner Losh int strcoll(const char *, const char *); 7761b60edfSMike Barcroft char *strcpy(char * __restrict, const char * __restrict); 78bb28f3c2SWarner Losh size_t strcspn(const char *, const char *); 7932484af1SMike Barcroft #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 80bb28f3c2SWarner Losh char *strdup(const char *); 8161b60edfSMike Barcroft #endif 8232484af1SMike Barcroft char *strerror(int); 836e070759SMike Barcroft #if __POSIX_VISIBLE >= 200112 846e070759SMike Barcroft int strerror_r(int, char *, size_t); 856e070759SMike Barcroft #endif 8661b60edfSMike Barcroft #if __BSD_VISIBLE 87bb28f3c2SWarner Losh size_t strlcat(char *, const char *, size_t); 88bb28f3c2SWarner Losh size_t strlcpy(char *, const char *, size_t); 8932484af1SMike Barcroft #endif 9032484af1SMike Barcroft size_t strlen(const char *); 9132484af1SMike Barcroft #if __BSD_VISIBLE 92bb28f3c2SWarner Losh void strmode(int, char *); 9332484af1SMike Barcroft #endif 9432484af1SMike Barcroft char *strncat(char * __restrict, const char * __restrict, size_t); 9532484af1SMike Barcroft int strncmp(const char *, const char *, size_t); 9632484af1SMike Barcroft char *strncpy(char * __restrict, const char * __restrict, size_t); 9732484af1SMike Barcroft #if __BSD_VISIBLE 98bb28f3c2SWarner Losh char *strnstr(const char *, const char *, size_t); 9932484af1SMike Barcroft #endif 10032484af1SMike Barcroft char *strpbrk(const char *, const char *); 10132484af1SMike Barcroft char *strrchr(const char *, int); 10232484af1SMike Barcroft #if __BSD_VISIBLE 103bb28f3c2SWarner Losh char *strsep(char **, const char *); 104bb28f3c2SWarner Losh char *strsignal(int); 10532484af1SMike Barcroft #endif 10632484af1SMike Barcroft size_t strspn(const char *, const char *); 10732484af1SMike Barcroft char *strstr(const char *, const char *); 10832484af1SMike Barcroft char *strtok(char * __restrict, const char * __restrict); 10932484af1SMike Barcroft #if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 500 11032484af1SMike Barcroft char *strtok_r(char *, const char *, char **); 11132484af1SMike Barcroft #endif 11232484af1SMike Barcroft size_t strxfrm(char * __restrict, const char * __restrict, size_t); 11332484af1SMike Barcroft #if __BSD_VISIBLE 114bb28f3c2SWarner Losh void swab(const void *, void *, size_t); 11559deaec5SRodney W. Grimes #endif 11659deaec5SRodney W. Grimes __END_DECLS 11759deaec5SRodney W. Grimes 11859deaec5SRodney W. Grimes #endif /* _STRING_H_ */ 119