Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: xz/src/xz/args.h

Issue 2869016: Add an unpatched version of xz, XZ Utils, to /trunk/deps/third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « xz/src/xz/Makefile.am ('k') | xz/src/xz/args.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file args.h
4 /// \brief Argument parsing
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
10 //
11 ///////////////////////////////////////////////////////////////////////////////
12
13 typedef struct {
14 /// Filenames from command line
15 char **arg_names;
16
17 /// Number of filenames from command line
18 size_t arg_count;
19
20 /// Name of the file from which to read filenames. This is NULL
21 /// if --files or --files0 was not used.
22 char *files_name;
23
24 /// File opened for reading from which filenames are read. This is
25 /// non-NULL only if files_name is non-NULL.
26 FILE *files_file;
27
28 /// Delimiter for filenames read from files_file
29 char files_delim;
30
31 } args_info;
32
33
34 extern bool opt_stdout;
35 extern bool opt_force;
36 extern bool opt_keep_original;
37 // extern bool opt_recursive;
38 extern bool opt_robot;
39
40 extern const char *stdin_filename;
41
42 extern void args_parse(args_info *args, int argc, char **argv);
OLDNEW
« no previous file with comments | « xz/src/xz/Makefile.am ('k') | xz/src/xz/args.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698