1 /* Begin include file string.h */
 2 /*        @(#)string.h        1.2       */
 3 
 4 extern char
 5           *strcpy(),
 6           *strncpy(),
 7           *strcat(),
 8           *strncat(),
 9           *strchr(),
10           *strrchr(),
11           *strpbrk(),
12           *strtok();
13 extern int
14           strcmp(),
15           strncmp(),
16           strlen(),
17           strspn(),
18           strcspn();
19 
20 /* End include file string.h */