xref: /original-bsd/bin/ls/extern.h (revision c4695039)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	5.4 (Berkeley) 03/03/93
8  */
9 
10 int	 acccmp __P((const FTSENT *, const FTSENT *));
11 int	 revacccmp __P((const FTSENT *, const FTSENT *));
12 int	 modcmp __P((const FTSENT *, const FTSENT *));
13 int	 revmodcmp __P((const FTSENT *, const FTSENT *));
14 int	 namecmp __P((const FTSENT *, const FTSENT *));
15 int	 revnamecmp __P((const FTSENT *, const FTSENT *));
16 int	 statcmp __P((const FTSENT *, const FTSENT *));
17 int	 revstatcmp __P((const FTSENT *, const FTSENT *));
18 
19 void	 err __P((int, const char *, ...));
20 char	*flags_to_string __P((u_long, char *));
21 void	 prcopy __P((char *, char *, int));
22 void	 printcol __P((DISPLAY *));
23 void	 printlong __P((DISPLAY *));
24 void	 printscol __P((DISPLAY *));
25 void	 usage __P((void));
26