gargoyle/include/gargoyle.h

12 lines
409 B
C
Raw Normal View History

2022-06-19 01:13:10 +00:00
#ifndef __GARGOYLE_H_
#define __GARGOYLE_H_
#include <gargoyle/codex.h>
#include <gargoyle/privledge.h>
2022-06-19 01:13:10 +00:00
#include <stdint.h>
2022-06-29 19:44:45 +00:00
uint8_t gargoyle_digest_argv(uint16_t optc, struct gargoyle_opt *optv, int *argc, char ***argv, gargoyle_flag_type flags);
2022-06-29 01:24:07 +00:00
uint8_t gargoyle_digest_envh(uint16_t optc, struct gargoyle_opt *optv, const char *prefix, uint16_t prefix_sz, char ***envh, gargoyle_flag_type flags);
2022-06-19 01:13:10 +00:00
#endif