more packages stuff

This commit is contained in:
Vitor Santos Costa
2009-02-16 17:19:43 +00:00
parent e5d11cfa16
commit e9e01815af
30 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,24 @@
/*******************************
* OPTION LISTS *
*******************************/
#define OPT_BOOL (0) /* types */
#define OPT_INT (1)
#define OPT_STRING (2)
#define OPT_ATOM (3)
#define OPT_TERM (4) /* arbitrary term */
#define OPT_LONG (5)
#define OPT_NATLONG (6) /* > 0 */
#define OPT_TYPE_MASK 0xff
#define OPT_INF 0x100 /* allow 'inf' */
#define OPT_ALL 0x1 /* flags */
typedef struct
{ atom_t name; /* Name of option */
int type; /* Type of option */
} opt_spec, *OptSpec;
extern bool scan_options(term_t options, int flags, atom_t optype,
const opt_spec *specs, ...);