add macros get get/put short/long.
[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 *
58d78dc9 6 * @(#)strings.h 5.2 (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();