Imported Upstream version 1.1.11
[platform/upstream/cdrkit.git] / include / getargs.h
1 /*
2  * This file has been modified for the cdrkit suite.
3  *
4  * The behaviour and appearence of the program code below can differ to a major
5  * extent from the version distributed by the original author(s).
6  *
7  * For details, see Changelog file distributed with the cdrkit package. If you
8  * received this file from another source then ask the distributing person for
9  * a log of modifications.
10  *
11  */
12
13 /* @(#)getargs.h        1.10 04/09/25 Copyright 1985 J. Schilling */
14 /*
15  *      Definitions for getargs()/getallargs()/getfiles()
16  *
17  *      Copyright (c) 1985 J. Schilling
18  */
19 /*
20  * This program is free software; you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License version 2
22  * as published by the Free Software Foundation.
23  *
24  * This program is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License along with
30  * this program; see the file COPYING.  If not, write to the Free Software
31  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32  */
33
34 #ifndef _GETARGS_H
35 #define _GETARGS_H
36
37 #ifndef _MCONFIG_H
38 #include <mconfig.h>
39 #endif
40 #ifndef _PROTOTYP_H
41 #include <prototyp.h>
42 #endif
43
44 #ifdef  __cplusplus
45 extern "C" {
46 #endif
47
48 #define NOARGS            0     /* No more args                 */
49 #define NOTAFLAG          1     /* Not a flag type argument     */
50 #define BADFLAG         (-1)    /* Not a valid flag argument    */
51 #define BADFMT          (-2)    /* Error in format string       */
52 #define NOTAFILE        (-3)    /* Seems to be a flag type      */
53
54 typedef int     (*getargfun)(const void *, void *);
55
56 /*
57  * Keep in sync with schily.h
58  */
59 extern  int     getallargs(int *, char * const**, const char *, ...);
60 extern  int     getargs(int *, char * const**, const char *, ...);
61 extern  int     getfiles(int *, char * const**, const char *);
62
63 #ifdef  __cplusplus
64 }
65 #endif
66
67 #endif  /* _GETARGS_H */