~ubuntu-branches/ubuntu/raring/flac/raring

« back to all changes in this revision

Viewing changes to src/metaflac/main.c

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mto: (8.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20070529225636-p8lkii0r0kp50pns
Tags: upstream-1.1.4
ImportĀ upstreamĀ versionĀ 1.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* metaflac - Command-line FLAC metadata editor
2
 
 * Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
 
2
 * Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or
5
5
 * modify it under the terms of the GNU General Public License
29
29
        CommandLineOptions options;
30
30
        int ret = 0;
31
31
 
 
32
#ifdef __EMX__
 
33
        _response(&argc, &argv);
 
34
        _wildcard(&argc, &argv);
 
35
#endif
 
36
 
32
37
        setlocale(LC_ALL, "");
33
38
        init_options(&options);
34
39
 
35
40
        if(parse_options(argc, argv, &options))
36
41
                ret = !do_operations(&options);
 
42
        else
 
43
                ret = 1;
37
44
 
38
45
        free_options(&options);
39
46