Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
4.8 KiB

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