date and time created 87/12/12 18:28:39 by bostic
[unix-history] / usr / src / include / strings.h
CommitLineData
bb0cfa24
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
a53426ff 6 * @(#)strings.h 5.3 (Berkeley) %G%
bb0cfa24 7 */
691999f3
SL
8
9/*
10 * External function definitions
11 * for routines described in string(3).
12 */
13char *strcat();
14char *strncat();
15int strcmp();
16int strncmp();
27a240f0
KB
17int strcasecmp();
18int strncasecmp();
691999f3
SL
19char *strcpy();
20char *strncpy();
21int strlen();
22char *index();
23char *rindex();
a53426ff
KB
24
25/* S5 compatibility */
26char *strchr();
27char *strrchr();
28char *strpbrk();
29int strspn();
30int strcspn();
31char *strtok();