[BACK]Return to string.h CVS log [TXT][DIR] Up to [local] / src / include

Annotation of src/include/string.h, Revision 1.23

1.23    ! guenther    1: /*     $OpenBSD: string.h,v 1.22 2011/07/03 18:51:01 jsg Exp $ */
1.1       deraadt     2: /*     $NetBSD: string.h,v 1.6 1994/10/26 00:56:30 cgd Exp $   */
                      3:
                      4: /*-
                      5:  * Copyright (c) 1990 The Regents of the University of California.
                      6:  * All rights reserved.
                      7:  *
                      8:  * Redistribution and use in source and binary forms, with or without
                      9:  * modification, are permitted provided that the following conditions
                     10:  * are met:
                     11:  * 1. Redistributions of source code must retain the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer.
                     13:  * 2. Redistributions in binary form must reproduce the above copyright
                     14:  *    notice, this list of conditions and the following disclaimer in the
                     15:  *    documentation and/or other materials provided with the distribution.
1.10      millert    16:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    17:  *    may be used to endorse or promote products derived from this software
                     18:  *    without specific prior written permission.
                     19:  *
                     20:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     21:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     22:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     23:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     24:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     25:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     26:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     27:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     28:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     29:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     30:  * SUCH DAMAGE.
                     31:  *
                     32:  *     @(#)string.h    5.10 (Berkeley) 3/9/91
                     33:  */
                     34:
                     35: #ifndef _STRING_H_
                     36: #define        _STRING_H_
1.16      millert    37:
                     38: #include <sys/cdefs.h>
1.17      millert    39: #include <machine/_types.h>
1.1       deraadt    40:
1.17      millert    41: #ifndef        _SIZE_T_DEFINED_
                     42: #define        _SIZE_T_DEFINED_
                     43: typedef        __size_t        size_t;
1.1       deraadt    44: #endif
                     45:
                     46: #ifndef        NULL
1.6       espie      47: #ifdef         __GNUG__
                     48: #define        NULL    __null
1.22      jsg        49: #elif defined(__cplusplus)
                     50: #define        NULL    0L
1.6       espie      51: #else
1.21      miod       52: #define        NULL    ((void *)0)
1.6       espie      53: #endif
1.1       deraadt    54: #endif
                     55:
                     56: __BEGIN_DECLS
1.7       millert    57: void   *memchr(const void *, int, size_t);
1.18      millert    58: void   *memrchr(const void *, int, size_t);
1.7       millert    59: int     memcmp(const void *, const void *, size_t);
1.13      avsm       60: void   *memcpy(void *, const void *, size_t)
                     61:                __attribute__ ((__bounded__(__buffer__,1,3)))
                     62:                __attribute__ ((__bounded__(__buffer__,2,3)));
                     63: void   *memmove(void *, const void *, size_t)
                     64:                __attribute__ ((__bounded__(__buffer__,1,3)))
                     65:                __attribute__ ((__bounded__(__buffer__,2,3)));
                     66: void   *memset(void *, int, size_t)
                     67:                __attribute__ ((__bounded__(__buffer__,1,3)));
1.7       millert    68: char   *strcat(char *, const char *);
                     69: char   *strchr(const char *, int);
                     70: int     strcmp(const char *, const char *);
                     71: int     strcoll(const char *, const char *);
                     72: char   *strcpy(char *, const char *);
                     73: size_t  strcspn(const char *, const char *);
                     74: char   *strerror(int);
                     75: size_t  strlen(const char *);
1.13      avsm       76: char   *strncat(char *, const char *, size_t)
                     77:                __attribute__ ((__bounded__(__string__,1,3)));
1.7       millert    78: int     strncmp(const char *, const char *, size_t);
1.13      avsm       79: char   *strncpy(char *, const char *, size_t)
                     80:                __attribute__ ((__bounded__(__string__,1,3)));
1.7       millert    81: char   *strpbrk(const char *, const char *);
                     82: char   *strrchr(const char *, int);
                     83: size_t  strspn(const char *, const char *);
                     84: char   *strstr(const char *, const char *);
                     85: char   *strtok(char *, const char *);
                     86: char   *strtok_r(char *, const char *, char **);
1.13      avsm       87: size_t  strxfrm(char *, const char *, size_t)
                     88:                __attribute__ ((__bounded__(__string__,1,3)));
1.1       deraadt    89:
1.16      millert    90: #if __BSD_VISIBLE || __XPG_VISIBLE
                     91: void   *memccpy(void *, const void *, int, size_t)
                     92:                __attribute__ ((__bounded__(__buffer__,1,4)));
                     93: #endif
                     94:
                     95: #if __BSD_VISIBLE || __XPG_VISIBLE >= 420
1.7       millert    96: int     bcmp(const void *, const void *, size_t);
1.13      avsm       97: void    bcopy(const void *, void *, size_t)
1.14      avsm       98:                __attribute__ ((__bounded__(__buffer__,1,3)))
1.13      avsm       99:                __attribute__ ((__bounded__(__buffer__,2,3)));
                    100: void    bzero(void *, size_t)
                    101:                __attribute__ ((__bounded__(__buffer__,1,2)));
1.7       millert   102: int     ffs(int);
                    103: char   *index(const char *, int);
                    104: char   *rindex(const char *, int);
                    105: int     strcasecmp(const char *, const char *);
1.16      millert   106: int     strncasecmp(const char *, const char *, size_t);
1.7       millert   107: char   *strdup(const char *);
1.16      millert   108: #endif
                    109:
                    110: #if __BSD_VISIBLE || __XPG_VISIBLE >= 600
                    111: int     strerror_r(int, char *, size_t)
                    112:            __attribute__ ((__bounded__(__string__,2,3)));
1.19      tedu      113: #endif
                    114:
                    115: #if __POSIX_VISIBLE >= 200809
1.23    ! guenther  116: char   *stpcpy(char *, const char *);
        !           117: char   *stpncpy(char *, const char *, size_t);
1.19      tedu      118: char   *strndup(const char *, size_t);
                    119: size_t  strnlen(const char *, size_t);
1.16      millert   120: #endif
                    121:
                    122: #if __BSD_VISIBLE
1.15      deraadt   123: char   *strcasestr(const char *, const char *);
1.13      avsm      124: size_t  strlcat(char *, const char *, size_t)
                    125:                __attribute__ ((__bounded__(__string__,1,3)));
                    126: size_t  strlcpy(char *, const char *, size_t)
                    127:                __attribute__ ((__bounded__(__string__,1,3)));
1.7       millert   128: void    strmode(int, char *);
                    129: char   *strsep(char **, const char *);
                    130: char   *strsignal(int);
1.20      matthew   131: int     timingsafe_bcmp(const void *, const void *, size_t);
1.1       deraadt   132: #endif
                    133: __END_DECLS
                    134:
                    135: #endif /* _STRING_H_ */