#ifndef __ABAC_OPTIONS_H__ #define __ABAC_OPTIONS_H__ #ifdef __cplusplus extern "C" { #endif typedef struct _options_t { char *keystore; char *role; char *principal; char *filename; char *oset; char *object; int dbdump; int all; } options_t; void get_options(int argc, char **argv, options_t *opts); #ifdef __cplusplus } #endif #endif /* __ABAC_OPTIONS_H__ */