File: args.h

package info (click to toggle)
avrp 1.0beta3-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 204 kB
  • ctags: 194
  • sloc: ansic: 2,463; makefile: 40; perl: 6; sh: 5
file content (63 lines) | stat: -rw-r--r-- 1,957 bytes parent folder | download | duplicates (8)
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
/***********************************************************************
 *  args - Argument reading system
 *  Copyright (C) 1997-1998 Jon Anders Haugum
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; see the file COPYING.  If not, write to
 *  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 *  Boston, MA 02111-1307, USA.
 *
 *
 *  Author of args can be reached at:
 *     email: jonah@colargol.tihlde.hist.no
 *     www: http://www.colargol.tihlde.hist.no/~jonah/el/avrp.html
 *     Postal address: Jon Anders Haugum
 *                     vre Mllenbergsgt 52
 *                     7014 Trondheim
 */

enum
	{
	ARGTYPE_BOOLEAN = 0,   /* boolean Value (0 = False) */
	ARGTYPE_STRING,        /* Stringpointer in Data     */
	ARGTYPE_STRING_MULTI   /* List of strings in Data   */
	};

#define GET_ARG(args,argnum) (args->arg[argnum].data)
#define SET_ARG(args,argnum,value) (args->arg[argnum].data = (void *)value)

struct args
	{
	struct arg *arg;
	int count;
	struct data_list *first_data;
	};

struct arg
	{
	int type;
	char letter;
	char *longarg;
	void *data;
	};

struct data_list
	{
	struct data_list *next;
	void *data;
	};

struct args *alloc_args(int arg_count);
int read_args(struct args *args, int argc, char *argv[]);
void free_args(struct args *args);
void define_arg(struct args *args, int index, int type, char letter, char *longarg, void *def_value);