gargoyle/include/gargoyle/codex.h

11 lines
211 B
C

#ifndef __GARGOYLE_CODEX_H_
#define __GARGOYLE_CODEX_H_
#include <stdint.h>
const uint8_t GARGOYLE_ERR_SUCCESS = 0;
const uint8_t GARGOYLE_ERR_RESERVED = 1;
const uint8_t GARGOYLE_ERR_UNKNOWN_OPT = 2;
#endif