xref: /csrg-svn/sys/libkern/libkern.h (revision 54183)
1*54183Sbostic /*-
2*54183Sbostic  * Copyright (c) 1992 The Regents of the University of California.
3*54183Sbostic  * All rights reserved.
4*54183Sbostic  *
5*54183Sbostic  * %sccs.include.redist.c%
6*54183Sbostic  *
7*54183Sbostic  *	@(#)libkern.h	7.1 (Berkeley) 06/21/92
8*54183Sbostic  */
9*54183Sbostic 
10*54183Sbostic /* Prototypes for non-quad routines. */
11*54183Sbostic 
12*54183Sbostic int	 bcmp __P((const void *, const void *, size_t));
13*54183Sbostic int	 ffs __P((int));
14*54183Sbostic int	 locc __P((int mask, char *cp, unsigned size));
15*54183Sbostic int	 scanc __P((unsigned size, u_char *cp, u_char *table, int mask));
16*54183Sbostic int	 skpc __P((int mask, int size, char *cp));
17*54183Sbostic char	*strcat __P((char *, const char *));
18*54183Sbostic char	*strcpy __P((char *, const char *));
19*54183Sbostic size_t	 strlen __P((const char *));
20*54183Sbostic char	*strncpy __P((char *, const char *, size_t));
21