vax, tahoe self-configuration
[unix-history] / usr / src / include / string.h
CommitLineData
91172f79
RE
1/*
2 * Copyright (c) 1985 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)string.h 5.1 (Berkeley) 85/08/05
7 */
8
9#include <strings.h>
10
11/*
12 * these next few are obsolete trash
13 */
14
15extern char *strcpyn();
16extern char *strcatn();
17extern int strcmpn();
18
19/*
20 * and the rest are Sys5 functions supported just so
21 * Sys5 progs will compile easily.
22 */
23
24extern char *strchr();
25extern char *strrchr();
26extern char *strpbrk();
27extern int strspn();
28extern int strcspn();
29extern char *strtok();