12 lines
494 B
C
12 lines
494 B
C
#ifndef __GARGOYLE_H_
|
|
#define __GARGOYLE_H_
|
|
|
|
#include <gargoyle/codex.h>
|
|
#include <gargoyle/delusion.h>
|
|
#include <gargoyle/privledge.h>
|
|
#include <stdint.h>
|
|
|
|
uint8_t gargoyle_digest_argv(uint16_t optc, struct gargoyle_optn *optv, int *argc, char ***argv, struct gargoyle_err *err, gargoyle_flag_type flags);
|
|
uint8_t gargoyle_digest_envh(uint16_t optc, struct gargoyle_optn *optv, const char *prefix, uint16_t prefix_sz, char ***envh, struct gargoyle_err *err, gargoyle_flag_type flags);
|
|
|
|
#endif
|