xref: /original-bsd/bin/ls/extern.h (revision e8eb2810)
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) 05/31/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 char	*flags_to_string __P((u_long, char *));
20 void	 prcopy __P((char *, char *, int));
21 void	 printcol __P((DISPLAY *));
22 void	 printlong __P((DISPLAY *));
23 void	 printscol __P((DISPLAY *));
24 void	 usage __P((void));
25