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 * 3359deaec5SRodney W. Grimes * @(#)string.h 8.1 (Berkeley) 6/2/93 3459deaec5SRodney W. Grimes */ 3559deaec5SRodney W. Grimes 3659deaec5SRodney W. Grimes #ifndef _STRING_H_ 3759deaec5SRodney W. Grimes #define _STRING_H_ 3859deaec5SRodney W. Grimes #include <machine/ansi.h> 3959deaec5SRodney W. Grimes 4059deaec5SRodney W. Grimes #ifdef _BSD_SIZE_T_ 4159deaec5SRodney W. Grimes typedef _BSD_SIZE_T_ size_t; 4259deaec5SRodney W. Grimes #undef _BSD_SIZE_T_ 4359deaec5SRodney W. Grimes #endif 4459deaec5SRodney W. Grimes 4559deaec5SRodney W. Grimes #ifndef NULL 4659deaec5SRodney W. Grimes #define NULL 0 4759deaec5SRodney W. Grimes #endif 4859deaec5SRodney W. Grimes 4959deaec5SRodney W. Grimes #include <sys/cdefs.h> 5059deaec5SRodney W. Grimes 5159deaec5SRodney W. Grimes __BEGIN_DECLS 5259deaec5SRodney W. Grimes void *memchr __P((const void *, int, size_t)); 5359deaec5SRodney W. Grimes int memcmp __P((const void *, const void *, size_t)); 5459deaec5SRodney W. Grimes void *memcpy __P((void *, const void *, size_t)); 5559deaec5SRodney W. Grimes void *memmove __P((void *, const void *, size_t)); 5659deaec5SRodney W. Grimes void *memset __P((void *, int, size_t)); 5759deaec5SRodney W. Grimes char *strcat __P((char *, const char *)); 5859deaec5SRodney W. Grimes char *strchr __P((const char *, int)); 5959deaec5SRodney W. Grimes int strcmp __P((const char *, const char *)); 6059deaec5SRodney W. Grimes int strcoll __P((const char *, const char *)); 6159deaec5SRodney W. Grimes char *strcpy __P((char *, const char *)); 6259deaec5SRodney W. Grimes size_t strcspn __P((const char *, const char *)); 6359deaec5SRodney W. Grimes char *strerror __P((int)); 6459deaec5SRodney W. Grimes size_t strlen __P((const char *)); 6559deaec5SRodney W. Grimes char *strncat __P((char *, const char *, size_t)); 6659deaec5SRodney W. Grimes int strncmp __P((const char *, const char *, size_t)); 6759deaec5SRodney W. Grimes char *strncpy __P((char *, const char *, size_t)); 6859deaec5SRodney W. Grimes char *strpbrk __P((const char *, const char *)); 6959deaec5SRodney W. Grimes char *strrchr __P((const char *, int)); 7059deaec5SRodney W. Grimes size_t strspn __P((const char *, const char *)); 7159deaec5SRodney W. Grimes char *strstr __P((const char *, const char *)); 7259deaec5SRodney W. Grimes char *strtok __P((char *, const char *)); 7359deaec5SRodney W. Grimes size_t strxfrm __P((char *, const char *, size_t)); 7459deaec5SRodney W. Grimes 7559deaec5SRodney W. Grimes /* Nonstandard routines */ 7659deaec5SRodney W. Grimes #ifndef _ANSI_SOURCE 7759deaec5SRodney W. Grimes int bcmp __P((const void *, const void *, size_t)); 7859deaec5SRodney W. Grimes void bcopy __P((const void *, void *, size_t)); 7959deaec5SRodney W. Grimes void bzero __P((void *, size_t)); 8059deaec5SRodney W. Grimes int ffs __P((int)); 8159deaec5SRodney W. Grimes char *index __P((const char *, int)); 8259deaec5SRodney W. Grimes void *memccpy __P((void *, const void *, int, size_t)); 8359deaec5SRodney W. Grimes char *rindex __P((const char *, int)); 8459deaec5SRodney W. Grimes int strcasecmp __P((const char *, const char *)); 8559deaec5SRodney W. Grimes char *strdup __P((const char *)); 8659deaec5SRodney W. Grimes void strmode __P((int, char *)); 8759deaec5SRodney W. Grimes int strncasecmp __P((const char *, const char *, size_t)); 8859deaec5SRodney W. Grimes char *strsep __P((char **, const char *)); 8959deaec5SRodney W. Grimes void swab __P((const void *, void *, size_t)); 9059deaec5SRodney W. Grimes #endif 9159deaec5SRodney W. Grimes __END_DECLS 9259deaec5SRodney W. Grimes 9359deaec5SRodney W. Grimes #endif /* _STRING_H_ */ 94