~ubuntu-branches/ubuntu/trusty/geda-utils/trusty

« back to all changes in this revision

Viewing changes to gschlas/parsecmd.c

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2005-03-15 23:04:53 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050315230453-x3x6qtw9qv17zbnf
Tags: 20050313-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* gEDA - GPL Electronic Design Automation
 
2
 * gschlas - gEDA Load and Save
 
3
 * Copyright (C) 2002 Ales V. Hvezda
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
 
18
 */
 
19
 
 
20
#include <config.h>
 
21
 
 
22
#include <stdio.h>
 
23
#ifdef HAVE_STRING_H
 
24
#include <string.h>
 
25
#endif
 
26
#ifdef HAVE_UNISTD_H
 
27
#include <unistd.h>
 
28
#endif
 
29
 
 
30
#include <libgeda/libgeda.h>
 
31
 
 
32
#include "../include/globals.h"
 
33
#include "../include/prototype.h"
 
34
 
 
35
#ifdef HAVE_LIBDMALLOC
 
36
#include <dmalloc.h>
 
37
#endif
 
38
 
 
39
#define OPTIONS "hqv"
 
40
 
 
41
#ifndef OPTARG_IN_UNISTD
 
42
extern char *optarg;
 
43
extern int optind;
 
44
#endif
 
45
 
 
46
 
 
47
void usage(char *cmd)
 
48
{
 
49
    printf("Usage: %s [OPTIONS] filename1 ... filenameN\n", cmd);
 
50
    printf("  -q                Quiet mode\n");
 
51
    printf("  -v                Verbose mode on\n");
 
52
    printf("  -h                This message\n");
 
53
    printf("\n");
 
54
    exit(0);
 
55
}
 
56
 
 
57
int parse_commandline(int argc, char *argv[])
 
58
{
 
59
    int ch;
 
60
 
 
61
    while ((ch = getopt(argc, argv, OPTIONS)) != -1) {
 
62
        switch (ch) {
 
63
 
 
64
        case 'v':
 
65
            verbose_mode = TRUE;
 
66
            break;
 
67
 
 
68
        case 'q':
 
69
            quiet_mode = TRUE;
 
70
            break;
 
71
 
 
72
        case 'h':
 
73
            usage(argv[0]);
 
74
            break;
 
75
 
 
76
        case '?':
 
77
        default:
 
78
            usage(argv[0]);
 
79
            break;
 
80
        }
 
81
    }
 
82
 
 
83
    if (quiet_mode) {
 
84
        verbose_mode = FALSE;
 
85
    }
 
86
 
 
87
    return (optind);
 
88
}