1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/******************************************************************************
**
** ls_clp.h
**
** Header file for command line parser
**
** Automatically created by genparse v0.7.6
**
** See http://genparse.sourceforge.net for details and updates
**
******************************************************************************/
#include <stdio.h>
#include "coreutils.h"
#include "ls.h"
#ifndef bool
typedef enum bool_t
{
false = 0, true
} bool;
#endif
/* customized structure for command line parameters */
struct arg_t
{
bool all;
bool almost_all;
bool author;
bool escape;
char * block_size;
int block_size_li;
bool ignore_backups;
bool c;
bool C;
char * color;
bool color_flag;
bool directory;
bool dired;
bool f;
bool classify;
bool file_type;
char * format;
bool full_time;
bool g;
bool group_directories_first;
bool no_group;
bool human_readable;
bool si;
bool dereference_command_line;
bool dereference_command_line_symlink_to_dir;
char * hide;
char * indicator_style;
bool inode;
char * ignore;
bool k;
bool kilobytes;
bool l;
bool dereference;
bool m;
bool numeric_uid_gid;
bool literal;
bool o;
bool p;
bool hide_control_chars;
bool show_control_chars;
bool quote_name;
char * quoting_style;
bool reverse;
bool recursive;
bool size;
bool S;
char * sort;
char * time;
char * time_style;
bool t;
unsigned long int tabsize;
bool u;
bool U;
bool v;
unsigned long int width;
bool x;
bool X;
bool context;
bool _1;
bool help;
bool version;
int optind;
};
/* function prototypes */
void Cmdline (struct arg_t *my_args, int argc, char *argv[]);
void usage (int status, char *program_name);
|