disallow non-root from starting daemon or queue mode;
[unix-history] / usr / src / include / strings.h
CommitLineData
bb0cfa24 1/*
cff0a8c7
KB
2 * Copyright (c) 1988 The Regents of the University of California.
3 * All rights reserved.
bb0cfa24 4 *
cff0a8c7
KB
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16 *
0c03203c 17 * @(#)strings.h 5.5 (Berkeley) %G%
bb0cfa24 18 */
691999f3 19
cff0a8c7
KB
20/* Routines described in string(3) */
21char *strcat(), *strncat(), *strcpy(), *strncpy(), *index(), *rindex();
22int strcmp(), strncmp(), strcasecmp(), strncasecmp(), strlen();
23
24/* Routines described in memory(BA_LIB); System V compatibility */
cff0a8c7 25char *memccpy(), *memchr(), *memcpy(), *memset(), *strchr(),
0c03203c 26 *strpbrk(), *strrchr(), *strsep(), *strtok();
cff0a8c7 27int memcmp(), strcspn(), strspn();
0c03203c
KB
28
29/* Routines from ANSI X3J11 */
30char *strerror();