Deleted Added
full compact
ls.h (50471) ls.h (61178)
1
2/*
3 * Copyright (c) 1989, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Michael Fischbein.
8 *

--- 21 unchanged lines hidden (view full) ---

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * from: @(#)ls.h 8.1 (Berkeley) 5/31/93
1
2/*
3 * Copyright (c) 1989, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Michael Fischbein.
8 *

--- 21 unchanged lines hidden (view full) ---

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * from: @(#)ls.h 8.1 (Berkeley) 5/31/93
38 * $FreeBSD: head/bin/ls/ls.h 50471 1999-08-27 23:15:48Z peter $
38 * $FreeBSD: head/bin/ls/ls.h 61178 2000-06-02 14:53:42Z joe $
39 */
40
41#define NO_PRINT 1
42
43extern long blocksize; /* block size units */
44
45extern int f_accesstime; /* use time of last access */
46extern int f_flags; /* show flags associated with a file */
47extern int f_inode; /* print inode */
48extern int f_longform; /* long listing format */
49extern int f_octal; /* print unprintables in octal */
50extern int f_octal_escape; /* like f_octal but use C escapes if possible */
51extern int f_sectime; /* print the real time for all files */
52extern int f_size; /* list size in short listing */
53extern int f_statustime; /* use time of last mode change */
54extern int f_notabs; /* don't use tab-separated multi-col output */
55extern int f_type; /* add type character for non-regular files */
39 */
40
41#define NO_PRINT 1
42
43extern long blocksize; /* block size units */
44
45extern int f_accesstime; /* use time of last access */
46extern int f_flags; /* show flags associated with a file */
47extern int f_inode; /* print inode */
48extern int f_longform; /* long listing format */
49extern int f_octal; /* print unprintables in octal */
50extern int f_octal_escape; /* like f_octal but use C escapes if possible */
51extern int f_sectime; /* print the real time for all files */
52extern int f_size; /* list size in short listing */
53extern int f_statustime; /* use time of last mode change */
54extern int f_notabs; /* don't use tab-separated multi-col output */
55extern int f_type; /* add type character for non-regular files */
56extern int f_color; /* add type in color for non-regular files */
56
57typedef struct {
58 FTSENT *list;
59 u_long btotal;
60 int bcfile;
61 int entries;
62 int maxlen;
63 int s_block;

--- 14 unchanged lines hidden ---
57
58typedef struct {
59 FTSENT *list;
60 u_long btotal;
61 int bcfile;
62 int entries;
63 int maxlen;
64 int s_block;

--- 14 unchanged lines hidden ---