File: parse_cl.h

package info (click to toggle)
ipgrab 0.8.2-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 540 kB
  • ctags: 555
  • sloc: ansic: 4,608; sh: 1,507; makefile: 120
file content (33 lines) | stat: -rw-r--r-- 627 bytes parent folder | download
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
/*****************************************************************************
**
** parse_cl.h
**
** Thu Mar 25 07:42:05 1999
** mborella@stratos (Mike Borella)
**
** Header file for command line parsing routines
**
** Automatically created by genparse v0.2.2
**
** See http://www.xnet.com/~cathmike/MSB/Software/ for details
**
*****************************************************************************/

#include <stdio.h>

struct arg_t
{
  int c;
  char *i;
  int b;
  int p;
  int l;
  int n;
  int t;
  int m;
  int optind;
};

struct arg_t *parse_cl(int, char **);
void usage(char *);
void free_args(struct arg_t *);