Include the proper headers for uint*_t

This commit is contained in:
Nick Chambers 2022-07-02 19:30:46 -05:00
parent a9b18e4e6f
commit a5eb69f4e5
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#ifndef __GARGOYLE_PRIVLEDGE_H_
#define __GARGOYLE_PRIVLEDGE_H_
#include <stdint.h>
struct gargoyle_opt {
const char *brand;
uint16_t brand_sz;

View File

@ -1,8 +1,8 @@
#ifndef __GARGOYLE_SCRIBE_H_
#define __GARGOYLE_SCRIBE_H_
#include <gargoyle/codex.h>
#include <gargoyle/privledge.h>
#include <stdint.h>
uint8_t gargoyle_from_bool(struct gargoyle_opt *opt, const char *brand, const char *neg, uint16_t neg_sz, gargoyle_flag_type flags);
uint8_t gargoyle_from_rope(struct gargoyle_opt *opt, const char *brand_val, gargoyle_flag_type flags);