gargoyle/include/gargoyle/twine.h

13 lines
376 B
C

#ifndef __GARGOYLE_TWINE_H_
#define __GARGOYLE_TWINE_H_
#include <gargoyle/codex.h>
#include <stdint.h>
uint8_t gargoyle_cmp(const char *s1, const char *s2, uint16_t len, gargoyle_flag_type flags);
char *gargoyle_cpy(char *dst, const char *src, uint16_t len, gargoyle_flag_type flags);
uint8_t gargoyle_is_eql(char lhs, char rhs);
uint8_t gargoyle_is_sep(char tok);
#endif