]> git.saurik.com Git - apple/file_cmds.git/blobdiff - ls/ls.h
file_cmds-230.tar.gz
[apple/file_cmds.git] / ls / ls.h
diff --git a/ls/ls.h b/ls/ls.h
index 4f15f9899e39b1aeaba3ca403c99915c691d2d3f..246470b6e4225d6a00a44e1d83ec55245c2489c9 100644 (file)
--- a/ls/ls.h
+++ b/ls/ls.h
 extern long blocksize;         /* block size units */
 
 extern int f_accesstime;       /* use time of last access */
+extern int f_birthtime;                /* use time of file birth */
 extern int f_flags;            /* show flags associated with a file */
 extern int f_humanval;         /* show human-readable file sizes */
-#ifndef __APPLE__
-extern int f_lomac;            /* show LOMAC attributes */
-#endif /* __APPLE__ */
 extern int f_inode;            /* print inode */
 extern int f_longform;         /* long listing format */
 extern int f_octal;            /* print unprintables in octal */
@@ -60,9 +58,14 @@ extern int f_sortacross;     /* sort across rows, not down columns */
 extern int f_statustime;       /* use time of last mode change */
 extern int f_notabs;           /* don't use tab-separated multi-col output */
 extern int f_type;             /* add type character for non-regular files */
+extern int f_acl;              /* print ACLs in long format */
+extern int f_xattr;            /* print extended attributes in long format  */
+extern int f_group;            /* list group without owner */
+extern int f_owner;            /* list owner without group */
 #ifdef COLORLS
 extern int f_color;            /* add type in color for non-regular files */
 #endif
+extern int f_numericonly;      /* don't convert uid/gid to name */
 
 typedef struct {
        FTSENT *list;