gargoyle/include/gargoyle/twine.h

13 lines
353 B
C

#ifndef __GARGOYLE_TWINE_H_
#define __GARGOYLE_TWINE_H_
#include <stdint.h>
static const uint8_t GARGOYLE_CMP_ICASE = 1 << 0;
static const uint8_t GARGOYLE_CMP_SYMBL = 1 << 1;
static const uint8_t GARGOYLE_CMP_FLXBL = GARGOYLE_CMP_ICASE | GARGOYLE_CMP_SYMBL;
uint8_t gargoyle_cmp(const char *s1, const char *s2, uint16_t len, uint8_t flags);
#endif