xref: /original-bsd/bin/ls/extern.h (revision 3b6250d9)
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.3 (Berkeley) 03/13/92
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 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