void sprintfs
[unix-history] / usr / src / include / strings.h
index 3b93950..e790a62 100644 (file)
@@ -3,7 +3,7 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)strings.h   5.2 (Berkeley) %G%
+ *     @(#)strings.h   5.3 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -14,8 +14,18 @@ char *strcat();
 char   *strncat();
 int    strcmp();
 int    strncmp();
 char   *strncat();
 int    strcmp();
 int    strncmp();
+int    strcasecmp();
+int    strncasecmp();
 char   *strcpy();
 char   *strncpy();
 int    strlen();
 char   *index();
 char   *rindex();
 char   *strcpy();
 char   *strncpy();
 int    strlen();
 char   *index();
 char   *rindex();
+
+/* S5 compatibility */
+char   *strchr();
+char   *strrchr();
+char   *strpbrk();
+int    strspn();
+int    strcspn();
+char   *strtok();