gargoyle/include/gargoyle.h

14 lines
317 B
C
Raw Normal View History

2022-06-19 01:13:10 +00:00
#ifndef __GARGOYLE_H_
#define __GARGOYLE_H_
#include <gargoyle/codex.h>
2022-06-20 01:30:01 +00:00
#include <gargoyle/scribe.h>
#include <gargoyle/sleuth.h>
2022-06-19 01:13:10 +00:00
#include <stdint.h>
2022-06-19 09:02:11 +00:00
const uint8_t GARGOYLE_DIGEST_ALL = 1 << 0;
uint8_t gargoyle_digest_args(uint16_t optc, struct gargoyle_opt *optv, int *argc, char ***argv, uint8_t flags);
2022-06-19 01:13:10 +00:00
#endif