gargoyle/include/gargoyle/twine.h

13 lines
376 B
C
Raw Normal View History

#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);
2022-07-01 21:48:21 +00:00
uint8_t gargoyle_is_eql(char lhs, char rhs);
uint8_t gargoyle_is_sep(char tok);
#endif