xref: /original-bsd/usr.bin/cksum/extern.h (revision c3e32dec)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	8.1 (Berkeley) 06/06/93
8  */
9 
10 #include <sys/cdefs.h>
11 
12 __BEGIN_DECLS
13 int	crc __P((int, unsigned long *, unsigned long *));
14 void	pcrc __P((char *, unsigned long, unsigned long));
15 void	psum1 __P((char *, unsigned long, unsigned long));
16 void	psum2 __P((char *, unsigned long, unsigned long));
17 int	csum1 __P((int, unsigned long *, unsigned long *));
18 int	csum2 __P((int, unsigned long *, unsigned long *));
19 __END_DECLS
20