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