The Machine Perception Toolbox

[Introduction]- [News]- [Download]- [Screenshots]- [Manual (pdf)]- [Forums]- [API Reference]- [Repository ]

 

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

option.h

Go to the documentation of this file.
00001 /*
00002  * Copyright 1993, 1995 Christopher Seiwald.
00003  *
00004  * This file is part of Jam - see jam.c for Copyright information.
00005  */
00006 
00007 /*
00008  * option.h - command line option processing
00009  *
00010  * {o >o
00011  *  \ -) "Command line option."
00012  */
00013 
00014 typedef struct option
00015 {
00016         char    flag;           /* filled in by getoption() */
00017         char    *val;           /* set to random address if true */
00018 } option;
00019 
00020 # define N_OPTS 256
00021 
00022 int     getoptions( int argc, char **argv, char *opts, option *optv );
00023 char *  getoptval( option *optv, char opt, int subopt );

Generated on Mon Nov 8 17:07:46 2004 for MPT by  doxygen 1.3.9.1